aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/ItemCounts.cs
diff options
context:
space:
mode:
authorstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
committerstefan <stefan@hegedues.at>2018-09-12 19:26:21 +0200
commit48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch)
tree8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/Dto/ItemCounts.cs
parentc32d8656382a0eacb301692e0084377fc433ae9b (diff)
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/Dto/ItemCounts.cs')
-rw-r--r--MediaBrowser.Model/Dto/ItemCounts.cs67
1 files changed, 0 insertions, 67 deletions
diff --git a/MediaBrowser.Model/Dto/ItemCounts.cs b/MediaBrowser.Model/Dto/ItemCounts.cs
deleted file mode 100644
index 8ceb3a86b9..0000000000
--- a/MediaBrowser.Model/Dto/ItemCounts.cs
+++ /dev/null
@@ -1,67 +0,0 @@
-namespace MediaBrowser.Model.Dto
-{
- /// <summary>
- /// Class LibrarySummary
- /// </summary>
- public class ItemCounts
- {
- /// <summary>
- /// Gets or sets the movie count.
- /// </summary>
- /// <value>The movie count.</value>
- public int MovieCount { get; set; }
- /// <summary>
- /// Gets or sets the series count.
- /// </summary>
- /// <value>The series count.</value>
- public int SeriesCount { get; set; }
- /// <summary>
- /// Gets or sets the episode count.
- /// </summary>
- /// <value>The episode count.</value>
- public int EpisodeCount { get; set; }
- /// <summary>
- /// Gets or sets the game count.
- /// </summary>
- /// <value>The game count.</value>
- public int GameCount { get; set; }
- public int ArtistCount { get; set; }
- public int ProgramCount { get; set; }
- /// <summary>
- /// Gets or sets the game system count.
- /// </summary>
- /// <value>The game system count.</value>
- public int GameSystemCount { get; set; }
- /// <summary>
- /// Gets or sets the trailer count.
- /// </summary>
- /// <value>The trailer count.</value>
- public int TrailerCount { get; set; }
- /// <summary>
- /// Gets or sets the song count.
- /// </summary>
- /// <value>The song count.</value>
- public int SongCount { get; set; }
- /// <summary>
- /// Gets or sets the album count.
- /// </summary>
- /// <value>The album count.</value>
- public int AlbumCount { get; set; }
- /// <summary>
- /// Gets or sets the music video count.
- /// </summary>
- /// <value>The music video count.</value>
- public int MusicVideoCount { get; set; }
- /// <summary>
- /// Gets or sets the box set count.
- /// </summary>
- /// <value>The box set count.</value>
- public int BoxSetCount { get; set; }
- /// <summary>
- /// Gets or sets the book count.
- /// </summary>
- /// <value>The book count.</value>
- public int BookCount { get; set; }
- public int ItemCount { get; set; }
- }
-}