diff options
| author | crobibero <cody@robibe.ro> | 2021-05-13 07:32:02 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2021-05-13 07:33:11 -0600 |
| commit | 6bcbc2b88ae84b1d7cfc50f0872580bed437a60f (patch) | |
| tree | 5a99e570a04d3aa11f8e4fb305cf48a10324d54c /MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs | |
| parent | 88a7875a2739bef91f1d7216c5ebd89b4c267911 (diff) | |
Reduce warnings in MediaBrowser.Controller
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs b/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs new file mode 100644 index 000000000..66b628371 --- /dev/null +++ b/MediaBrowser.Controller/MediaEncoding/TranscodingJobType.cs @@ -0,0 +1,23 @@ +namespace MediaBrowser.Controller.MediaEncoding +{ + /// <summary> + /// Enum TranscodingJobType. + /// </summary> + public enum TranscodingJobType + { + /// <summary> + /// The progressive. + /// </summary> + Progressive, + + /// <summary> + /// The HLS. + /// </summary> + Hls, + + /// <summary> + /// The dash. + /// </summary> + Dash + } +}
\ No newline at end of file |
