summaryrefslogtreecommitdiffstats
path: root/solve/PhotoEditor/Models/PhotoTransferResponseModel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'solve/PhotoEditor/Models/PhotoTransferResponseModel.cs')
-rw-r--r--solve/PhotoEditor/Models/PhotoTransferResponseModel.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/solve/PhotoEditor/Models/PhotoTransferResponseModel.cs b/solve/PhotoEditor/Models/PhotoTransferResponseModel.cs
new file mode 100644
index 0000000..274a9f4
--- /dev/null
+++ b/solve/PhotoEditor/Models/PhotoTransferResponseModel.cs
@@ -0,0 +1,9 @@
+namespace PhotoEditor.Models;
+
+public class PhotoTransferResponseModel
+{
+ public string? Base64Blob { get; set; }
+
+ public string? Error { get; set; }
+
+}