diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/CategoryInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/CategoryInfo.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/CategoryInfo.cs b/MediaBrowser.Model/Entities/CategoryInfo.cs new file mode 100644 index 0000000000..adf8ac7d96 --- /dev/null +++ b/MediaBrowser.Model/Entities/CategoryInfo.cs @@ -0,0 +1,21 @@ +
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// This is a stub class used by the api to get IBN types in a compact format
+ /// </summary>
+ public class CategoryInfo
+ {
+ /// <summary>
+ /// The name of the genre, year, studio, etc
+ /// </summary>
+ public string Name { get; set; }
+
+ public string PrimaryImagePath { get; set; }
+
+ /// <summary>
+ /// The number of items that have the genre, year, studio, etc
+ /// </summary>
+ public int ItemCount { get; set; }
+ }
+}
|
