mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
12 lines
155 B
C#
12 lines
155 B
C#
|
|
|
|||
|
|
namespace MediaBrowser.Model.Entities
|
|||
|
|
{
|
|||
|
|
public enum VideoType
|
|||
|
|
{
|
|||
|
|
VideoFile,
|
|||
|
|
Iso,
|
|||
|
|
DVD,
|
|||
|
|
BluRay
|
|||
|
|
}
|
|||
|
|
}
|