BotSharp/src/Infrastructure/BotSharp.Abstraction/Translation/Models/TranslationRequestModel.cs

10 lines
254 B
C#
Raw Normal View History

2024-06-24 17:37:12 +00:00
using BotSharp.Abstraction.Infrastructures.Enums;
namespace BotSharp.OpenAPI.ViewModels.Translations;
public class TranslationRequestModel
{
public string Text { get; set; } = null!;
public string ToLang { get; set; } = LanguageType.CHINESE;
}