You are here

TranscodeJobInterface.php in Video 8.2

File

modules/video_transcode/src/TranscodeJobInterface.php
View source
<?php

namespace Drupal\video_transcode;

use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\user\EntityOwnerInterface;
use Drupal\Core\Entity\EntityChangedInterface;

/**
 * Provides an interface defining a Transcode Job entity.
 */
interface TranscodeJobInterface extends ContentEntityInterface, EntityOwnerInterface, EntityChangedInterface {

}

Interfaces

Namesort descending Description
TranscodeJobInterface Provides an interface defining a Transcode Job entity.