2021-12-01 14:26:54 +01:00
|
|
|
namespace zero.Api.Endpoints.Translations;
|
|
|
|
|
|
2021-12-21 15:51:26 +01:00
|
|
|
public class TranslationBasic : ZeroIdEntity
|
2021-12-01 14:26:54 +01:00
|
|
|
{
|
2021-12-21 15:51:26 +01:00
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTimeOffset CreatedDate { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Flavor { get; set; }
|
|
|
|
|
|
2021-12-01 14:26:54 +01:00
|
|
|
public string Value { get; set; }
|
|
|
|
|
|
|
|
|
|
public TranslationDisplay Display { get; set; }
|
|
|
|
|
}
|