aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileConditionType.cs
blob: bfbd31f02b75544b9176af6e68bf9a7933325332 (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,
        SubstringOf = 4
    }
}