Readarr/src/NzbDrone.Core/Annotations/SelectOption.cs
Qstick dbb6ef7664 New: Custom Formats
Co-Authored-By: ta264 <ta264@users.noreply.github.com>
2023-02-03 21:11:54 -06:00

10 lines
242 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; }
}
}