summaryrefslogtreecommitdiffstats
path: root/solve/PhotoEditor/Models/PhotoTransferRequestModel.cs
blob: 3de410f3ebe272069c7d06a65f2b66997b7f586f (plain) (blame)
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; }
}