aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileConditionType.cs
blob: 12434a7985530db2dae4df0bdbb93c62d6f8273d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace MediaBrowser.Model.Dlna
{
    public enum ProfileConditionType
    {
        Equals = 0,
        NotEquals = 1,
        LessThanEqual = 2,
        GreaterThanEqual = 3,
        EqualsAny = 4
    }
}