Files
mixtape/zero.Api/Endpoints/Translations/Maps/TranslationSave.cs
T

8 lines
191 B
C#
Raw Normal View History

2021-12-01 14:26:54 +01:00
namespace zero.Api.Endpoints.Translations;
public class TranslationSave : SaveModel<Translation>
{
public string Value { get; set; }
public TranslationDisplay Display { get; set; }
}