mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-15 12:10:47 +01:00
Add GPL modules
This commit is contained in:
30
MediaBrowser.Model/Entities/MediaType.cs
Normal file
30
MediaBrowser.Model/Entities/MediaType.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
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";
|
||||
/// <summary>
|
||||
/// The photo
|
||||
/// </summary>
|
||||
public const string Photo = "Photo";
|
||||
/// <summary>
|
||||
/// The book
|
||||
/// </summary>
|
||||
public const string Book = "Book";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user