diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-16 14:47:05 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-16 14:47:05 -0400 |
| commit | 2c22db8b8d42e42a0575e0c2d9366f47f9ee7a24 (patch) | |
| tree | 5160543394f69112738f78785c776c24a4071c90 /MediaBrowser.Model | |
| parent | 27c644e6c8e215efe47e16bf49db0aec619409bc (diff) | |
Added an adult video entity
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Dto/ItemByNameCounts.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.Model/Dto/ItemCounts.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/CollectionType.cs | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dto/ItemByNameCounts.cs b/MediaBrowser.Model/Dto/ItemByNameCounts.cs index 20a8a4fa7..eff5ab5c8 100644 --- a/MediaBrowser.Model/Dto/ItemByNameCounts.cs +++ b/MediaBrowser.Model/Dto/ItemByNameCounts.cs @@ -11,6 +11,7 @@ namespace MediaBrowser.Model.Dto /// </summary> /// <value>The total count.</value> public int TotalCount { get; set; } + public int AdultVideoCount { get; set; } /// <summary> /// Gets or sets the movie count. /// </summary> diff --git a/MediaBrowser.Model/Dto/ItemCounts.cs b/MediaBrowser.Model/Dto/ItemCounts.cs index 6c60c183e..65c554b62 100644 --- a/MediaBrowser.Model/Dto/ItemCounts.cs +++ b/MediaBrowser.Model/Dto/ItemCounts.cs @@ -6,6 +6,7 @@ namespace MediaBrowser.Model.Dto /// </summary> public class ItemCounts { + public int AdultVideoCount { get; set; } /// <summary> /// Gets or sets the movie count. /// </summary> diff --git a/MediaBrowser.Model/Entities/CollectionType.cs b/MediaBrowser.Model/Entities/CollectionType.cs index 6d3a73aae..60509567e 100644 --- a/MediaBrowser.Model/Entities/CollectionType.cs +++ b/MediaBrowser.Model/Entities/CollectionType.cs @@ -16,5 +16,7 @@ namespace MediaBrowser.Model.Entities public const string HomeVideos = "homevideos"; public const string BoxSets = "boxsets"; + + public const string AdultVideos = "adultvideos"; } } |
