diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-02 14:25:03 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-02 14:25:03 -0400 |
| commit | f5988e7756d4b0b96ac0f2675293973f412114d8 (patch) | |
| tree | e27b25dec7e6ba248caec51780799626e1e0c1f3 /MediaBrowser.Model | |
| parent | 7532ecaf2de3eaf01a08a8d4de13e955bf8a05bb (diff) | |
3.0.4931.24071
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Entities/VideoFormat.cs | 14 | ||||
| -rw-r--r-- | MediaBrowser.Model/MediaBrowser.Model.csproj | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/VideoFormat.cs b/MediaBrowser.Model/Entities/VideoFormat.cs new file mode 100644 index 0000000000..8dfd9573c2 --- /dev/null +++ b/MediaBrowser.Model/Entities/VideoFormat.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace MediaBrowser.Model.Entities +{ + public enum VideoFormat + { + Standard, + Digital3D, + Sbs3D + } +} diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj index 3faa0ea2fd..b3e837dcaf 100644 --- a/MediaBrowser.Model/MediaBrowser.Model.csproj +++ b/MediaBrowser.Model/MediaBrowser.Model.csproj @@ -55,6 +55,7 @@ <Compile Include="Entities\MediaUrl.cs" /> <Compile Include="Entities\MetadataFields.cs" /> <Compile Include="Entities\Video3DFormat.cs" /> + <Compile Include="Entities\VideoFormat.cs" /> <Compile Include="Net\WebSocketMessage.cs" /> <Compile Include="Net\WebSocketMessageType.cs" /> <Compile Include="Net\WebSocketState.cs" /> |
