feat: add ImagePath property to CreateManualPayment command and update related protobuf definitions
Build and Deploy / build (push) Successful in 2m22s

This commit is contained in:
masoodafar-web
2026-01-02 00:45:53 +03:30
parent d0224d41b2
commit 441098a80b
5 changed files with 11 additions and 3 deletions
@@ -4,7 +4,7 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.5</Version>
<Version>0.0.6</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
@@ -55,6 +55,7 @@ message ManualPaymentModel
string rejection_reason = 17;
google.protobuf.Int64Value transaction_id = 18;
google.protobuf.Timestamp created = 19;
google.protobuf.StringValue image_path = 20;
}
message CreateManualPaymentRequest
@@ -64,6 +65,7 @@ message CreateManualPaymentRequest
int32 type = 3;
string description = 4;
google.protobuf.StringValue reference_number = 5;
google.protobuf.StringValue image_path = 6;
}
message CreateManualPaymentResponse