mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03: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";
|
|||
|
|
}
|
|||
|
|
}
|