aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileConditionType.cs
blob: b0a94c5b306e50a9359cc83c3142dc6ee220fe01 (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
    }
}