aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaType.cs
blob: 0c9bde6fb697044d61e67a0497a4906d82342d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class MediaType
    /// </summary>
    public class MediaType
    {
        /// <summary>
        /// The video
        /// </summary>
        public const string Video = "Video";
        /// <summary>
        /// The audio
        /// </summary>
        public const string Audio = "Audio";
        /// <summary>
        /// The game
        /// </summary>
        public const string Game = "Game";
        /// <summary>
        /// The photo
        /// </summary>
        public const string Photo = "Photo";
        /// <summary>
        /// The book
        /// </summary>
        public const string Book = "Book";
    }
}