aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Video3DFormat.cs
blob: a4f62e18b4321c8e28b9ef1de15411dcea51aca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma warning disable CS1591

namespace MediaBrowser.Model.Entities
{
    public enum Video3DFormat
    {
        HalfSideBySide,
        FullSideBySide,
        FullTopAndBottom,
        HalfTopAndBottom,
        MVC
    }
}