mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-28 02:37:40 +00:00
8 lines
165 B
C#
8 lines
165 B
C#
namespace NzbDrone.Api.ClientSchema
|
|
{
|
|
public class SelectOption
|
|
{
|
|
public int Value { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|