mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-04 06:04:37 -04:00
11 lines
348 B
C#
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
|
|
}
|