jellyfin/MediaBrowser.Model/Entities/MediaType.cs

29 lines
602 B
C#
Raw Normal View History

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