Radarr/src/NzbDrone.Core/Annotations/SelectOption.cs

12 lines
289 B
C#
Raw Normal View History

namespace NzbDrone.Core.Annotations
2013-06-13 07:20:33 +00:00
{
public class SelectOption
{
public int Value { get; set; }
public string Name { get; set; }
public int Order { get; set; }
public string Hint { get; set; }
2020-12-20 15:21:51 +00:00
public bool DividerAfter { get; set; }
2013-06-13 07:20:33 +00:00
}
}