Kavita/API/DTOs/KavitaLocale.cs
2025-05-04 08:41:29 -05:00

10 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
}