jellyfin/MediaBrowser.Model/Entities/MediaType.cs

29 lines
597 B
C#
Raw Normal View History

2018-12-27 23:27:57 +00:00
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Class MediaType
/// </summary>
2019-12-06 19:40:06 +00:00
public static class MediaType
2018-12-27 23:27:57 +00:00
{
/// <summary>
/// The video
/// </summary>
public const string Video = "Video";
2019-12-06 19:40:06 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
/// The audio
/// </summary>
public const string Audio = "Audio";
2019-12-06 19:40:06 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
/// The photo
/// </summary>
public const string Photo = "Photo";
2019-12-06 19:40:06 +00:00
2018-12-27 23:27:57 +00:00
/// <summary>
/// The book
/// </summary>
public const string Book = "Book";
}
}