jellyfin/MediaBrowser.Model/Entities/MediaType.cs

29 lines
597 B
C#
Raw Normal View History

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