jellyfin/MediaBrowser.Model/Entities/MediaType.cs

29 lines
602 B
C#
Raw Normal View History

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