feat: add FileUploadDto and image file handling to CreateManualPayment command and protobuf definitions
Build and Deploy / build (push) Successful in 2m23s

This commit is contained in:
masoodafar-web
2026-01-02 01:19:11 +03:30
parent 441098a80b
commit 31df6d843a
5 changed files with 58 additions and 46 deletions
@@ -4,7 +4,7 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.6</Version>
<Version>0.0.11</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
@@ -66,6 +66,14 @@ message CreateManualPaymentRequest
string description = 4;
google.protobuf.StringValue reference_number = 5;
google.protobuf.StringValue image_path = 6;
FileUploadModel image_file = 7;
}
message FileUploadModel
{
bytes file = 1;
string file_name = 2;
string mime = 3;
}
message CreateManualPaymentResponse