jellyfin/MediaBrowser.Model/Dlna/ProfileConditionType.cs
2014-10-09 18:22:04 -04:00

11 lines
211 B
C#

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