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? Options { get; set; } } }