1 2 3 4 5 6 7 8 9 10
namespace PhotoEditor.Models; public class PhotoTransferRequestModel { public string Base64Blob { get; set; } public string DynamicAction { get; set; } public string Parameters { get; set; } public string[]? Types { get; set; } }