jellyfin/MediaBrowser.Model/Dlna/ProfileConditionType.cs
2018-12-27 18:27:57 -05:00

11 lines
211 B
C#

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