mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
14 lines
389 B
C#
14 lines
389 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
using NzbDrone.Api.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();
|
|
}
|
|
} |