New: Better interface for creating custom formats

This commit is contained in:
ta264
2020-02-18 21:03:05 +00:00
committed by Qstick
parent a5bac30ef3
commit 241bf85f15
74 changed files with 2259 additions and 1090 deletions
@@ -0,0 +1,8 @@
namespace NzbDrone.Core.Annotations
{
public class SelectOption
{
public int Value { get; set; }
public string Name { get; set; }
}
}