mirror of
https://github.com/Radarr/Radarr
synced 2026-01-27 01:43:15 +01:00
11 lines
289 B
C#
11 lines
289 B
C#
namespace NzbDrone.Core.Annotations
|
|
{
|
|
public class SelectOption
|
|
{
|
|
public int Value { get; set; }
|
|
public string Name { get; set; }
|
|
public int Order { get; set; }
|
|
public string Hint { get; set; }
|
|
public bool DividerAfter { get; set; }
|
|
}
|
|
}
|