Files
mixtape/zero.Api/Endpoints/Translations/Maps/TranslationSave.cs
T
2021-12-01 14:26:54 +01:00

8 lines
191 B
C#

namespace zero.Api.Endpoints.Translations;
public class TranslationSave : SaveModel<Translation>
{
public string Value { get; set; }
public TranslationDisplay Display { get; set; }
}