mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-06 08:25:54 +01:00
13 lines
372 B
C#
13 lines
372 B
C#
using Newtonsoft.Json;
|
|
using Lidarr.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();
|
|
}
|
|
}
|