Kavita/API/DTOs/KavitaLocale.cs
2025-05-04 07:14:44 -07:00

11 lines
348 B
C#

namespace API.DTOs;
public sealed record KavitaLocale
{
public string FileName { get; set; } // Key
public string RenderName { get; set; }
public float TranslationCompletion { get; set; }
public bool IsRtL { get; set; }
public string Hash { get; set; } // ETAG hash so I can run my own localization busting implementation
}