mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
14 lines
206 B
C#
14 lines
206 B
C#
using System;
|
|
|
|
namespace Jellyfin.Data.Enums
|
|
{
|
|
public enum MediaFileKind : Int32
|
|
{
|
|
Main,
|
|
Sidecar,
|
|
AdditionalPart,
|
|
AlternativeFormat,
|
|
AdditionalStream
|
|
}
|
|
}
|