From 441098a80b5af46a7f990e8883ef4887108efad4 Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Fri, 2 Jan 2026 00:45:53 +0330 Subject: [PATCH] feat: add ImagePath property to CreateManualPayment command and update related protobuf definitions --- .../CreateManualPayment/CreateManualPaymentCommand.cs | 1 + .../CreateManualPayment/CreateManualPaymentCommandHandler.cs | 5 +++++ src/BackOffice.BFF.Domain/BackOffice.BFF.Domain.csproj | 4 ++-- .../BackOffice.BFF.ManualPayment.Protobuf.csproj | 2 +- .../Protos/manualpayment.proto | 2 ++ 5 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/BackOffice.BFF.Application/ManualPaymentCQ/Commands/CreateManualPayment/CreateManualPaymentCommand.cs b/src/BackOffice.BFF.Application/ManualPaymentCQ/Commands/CreateManualPayment/CreateManualPaymentCommand.cs index db853eb..d436fa5 100644 --- a/src/BackOffice.BFF.Application/ManualPaymentCQ/Commands/CreateManualPayment/CreateManualPaymentCommand.cs +++ b/src/BackOffice.BFF.Application/ManualPaymentCQ/Commands/CreateManualPayment/CreateManualPaymentCommand.cs @@ -7,6 +7,7 @@ public class CreateManualPaymentCommand : IRequest - + - + diff --git a/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/BackOffice.BFF.ManualPayment.Protobuf.csproj b/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/BackOffice.BFF.ManualPayment.Protobuf.csproj index 2f4f07f..53f820f 100644 --- a/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/BackOffice.BFF.ManualPayment.Protobuf.csproj +++ b/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/BackOffice.BFF.ManualPayment.Protobuf.csproj @@ -4,7 +4,7 @@ net9.0 enable enable - 0.0.5 + 0.0.6 None False False diff --git a/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/Protos/manualpayment.proto b/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/Protos/manualpayment.proto index 14adb8d..3271dba 100644 --- a/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/Protos/manualpayment.proto +++ b/src/Protobufs/BackOffice.BFF.ManualPayment.Protobuf/Protos/manualpayment.proto @@ -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