mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-31 12:43:38 +01:00
8 lines
164 B
C#
8 lines
164 B
C#
namespace Lidarr.Http.ClientSchema
|
|
{
|
|
public class SelectOption
|
|
{
|
|
public int Value { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|