1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Api/ClientSchema/SelectOption.cs

9 lines
165 B
C#
Raw Normal View History

2013-07-19 05:47:55 +02:00
namespace NzbDrone.Api.ClientSchema
2013-06-13 09:20:33 +02:00
{
public class SelectOption
{
public int Value { get; set; }
public string Name { get; set; }
}
}