aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/MediaType.cs
blob: dd2ae810be12a3b2ef0374a7e98f11b29ceb9a0f (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
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class MediaType.
    /// </summary>
    public static class MediaType
    {
        /// <summary>
        /// The video.
        /// </summary>
        public const string Video = "Video";

        /// <summary>
        /// The audio.
        /// </summary>
        public const string Audio = "Audio";

        /// <summary>
        /// The photo.
        /// </summary>
        public const string Photo = "Photo";

        /// <summary>
        /// The book.
        /// </summary>
        public const string Book = "Book";
    }
}