mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
12 lines
288 B
C#
12 lines
288 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 int? ParentValue { get; set; }
|
|
}
|
|
}
|