jellyfin/MediaBrowser.Model/Entities/MediaType.cs

31 lines
700 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00

namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Class MediaType
/// </summary>
public class MediaType
{
/// <summary>
/// The video
/// </summary>
public const string Video = "Video";
/// <summary>
/// The audio
/// </summary>
public const string Audio = "Audio";
/// <summary>
/// The game
/// </summary>
public const string Game = "Game";
2013-06-21 17:35:49 +02:00
/// <summary>
/// The photo
/// </summary>
public const string Photo = "Photo";
/// <summary>
/// The book
/// </summary>
public const string Book = "Book";
2013-02-21 02:33:05 +01:00
}
}