OneConversorTemplate/OnlyOneAccessTemplate/Models/ConversionRequestDto.cs

13 lines
406 B
C#

namespace OnlyOneAccessTemplate.Models
{
public class ConversionRequestDto
{
public string? Language { get; set; }
public string InputType { get; set; } = "text";
public string? TextInput { get; set; }
public IFormFile? FileInput { get; set; }
public string? UrlInput { get; set; }
public Dictionary<string, object>? Options { get; set; }
}
}