jellyfin/MediaBrowser.Model/Dlna/ProfileConditionType.cs
2014-10-07 22:25:24 -04:00

11 lines
No EOL
213 B
C#

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