mirror of
https://github.com/Readarr/Readarr
synced 2026-01-01 05:03:13 +01:00
13 lines
365 B
C#
13 lines
365 B
C#
using System.Text.Json.Serialization;
|
|
using Readarr.Http.REST;
|
|
|
|
namespace Readarr.Api.V1.Languages
|
|
{
|
|
public class LanguageResource : RestResource
|
|
{
|
|
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
|
|
public new int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string NameLower => Name.ToLowerInvariant();
|
|
}
|
|
}
|