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 | |
| parent | 19d21a246d9304f824674df3138b30a5b8e51e8c (diff) | |
default values for model classes
Diffstat (limited to 'MediaBrowser.Model/Entities')
| -rw-r--r-- | MediaBrowser.Model/Entities/LibraryUpdateInfo.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/VideoFormat.cs | 12 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/VirtualFolderInfo.cs | 8 |
3 files changed, 23 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs b/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs index e98b7ae2c4..ae85cbc3e2 100644 --- a/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs +++ b/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs @@ -32,6 +32,9 @@ namespace MediaBrowser.Model.Entities /// <value>The items updated.</value> public List<Guid> ItemsUpdated { get; set; } + /// <summary> + /// Initializes a new instance of the <see cref="LibraryUpdateInfo"/> class. + /// </summary> public LibraryUpdateInfo() { Folders = new List<Guid>(); diff --git a/MediaBrowser.Model/Entities/VideoFormat.cs b/MediaBrowser.Model/Entities/VideoFormat.cs index 107d20c141..ad04203e25 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 } } diff --git a/MediaBrowser.Model/Entities/VirtualFolderInfo.cs b/MediaBrowser.Model/Entities/VirtualFolderInfo.cs index be584e40e3..c322b79587 100644 --- a/MediaBrowser.Model/Entities/VirtualFolderInfo.cs +++ b/MediaBrowser.Model/Entities/VirtualFolderInfo.cs @@ -18,5 +18,13 @@ namespace MediaBrowser.Model.Entities /// </summary> /// <value>The locations.</value> public List<string> Locations { get; set; } + + /// <summary> + /// Initializes a new instance of the <see cref="VirtualFolderInfo"/> class. + /// </summary> + public VirtualFolderInfo() + { + Locations = new List<string>(); + } } } |
