mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
14 lines
401 B
C#
14 lines
401 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 int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string NameLower { get { return Name.ToLowerInvariant(); } }
|
|
}
|
|
} |