mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
added schema generation
This commit is contained in:
parent
e8c832ac18
commit
a66d43b806
11 changed files with 150 additions and 15 deletions
11
NzbDrone.Api/ClientSchema/Field.cs
Normal file
11
NzbDrone.Api/ClientSchema/Field.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace NzbDrone.Api.ClientSchema
|
||||
{
|
||||
public class Field
|
||||
{
|
||||
public int Order { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Label { get; set; }
|
||||
public string HelpText { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue