jellyfin-server/MediaBrowser.Model/Dlna/ProfileConditionType.cs

11 lines
213 B
C#
Raw Normal View History

namespace MediaBrowser.Model.Dlna
{
public enum ProfileConditionType
{
Equals = 0,
NotEquals = 1,
LessThanEqual = 2,
2014-10-08 02:25:24 +00:00
GreaterThanEqual = 3,
SubstringOf = 4
}
}