aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileConditionType.cs
blob: 26284126226ed1244cf12e4a164af7ffc055feb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace MediaBrowser.Model.Dlna
{
    public enum ProfileConditionType
    {
        Equals = 0,
        NotEquals = 1,
        LessThanEqual = 2,
        GreaterThanEqual = 3,
        EqualsAny = 4
    }
}