mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
23 lines
479 B
C#
23 lines
479 B
C#
|
|
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";
|
|
}
|
|
}
|