jellyfin/MediaBrowser.Model/Dlna/ProfileConditionType.cs
2014-05-08 16:26:20 -04:00

10 lines
188 B
C#

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