mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
14 lines
375 B
C#
14 lines
375 B
C#
using Newtonsoft.Json;
|
|
using Radarr.Http.REST;
|
|
|
|
namespace NzbDrone.Api.Profiles.Languages
|
|
{
|
|
public class LanguageResource : RestResource
|
|
{
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Include)]
|
|
public new int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string NameLower => Name.ToLowerInvariant();
|
|
}
|
|
}
|