mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
15 lines
223 B
C#
15 lines
223 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
public enum VideoFormat
|
|
{
|
|
Standard,
|
|
Digital3D,
|
|
Sbs3D
|
|
}
|
|
}
|