diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 21:17:59 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-20 21:17:59 -0400 |
| commit | 2e358a5968375b952c7dab02730977f9952bd7d4 (patch) | |
| tree | c19956da16f65753a2b9c50890c339f702c4d99a /MediaBrowser.Model/Entities/VideoFormat.cs | |
| parent | 19d21a246d9304f824674df3138b30a5b8e51e8c (diff) | |
default values for model classes
Diffstat (limited to 'MediaBrowser.Model/Entities/VideoFormat.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/VideoFormat.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/VideoFormat.cs b/MediaBrowser.Model/Entities/VideoFormat.cs index 107d20c14..ad04203e2 100644 --- a/MediaBrowser.Model/Entities/VideoFormat.cs +++ b/MediaBrowser.Model/Entities/VideoFormat.cs @@ -1,9 +1,21 @@ namespace MediaBrowser.Model.Entities { + /// <summary> + /// Enum VideoFormat + /// </summary> public enum VideoFormat { + /// <summary> + /// The standard + /// </summary> Standard, + /// <summary> + /// The digital3 D + /// </summary> Digital3D, + /// <summary> + /// The SBS3 D + /// </summary> Sbs3D } } |
