This commit is contained in:
masoodafar-web
2025-11-25 05:05:10 +03:30
parent ac97ef5dce
commit 4546add810
4 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,6 @@
using FrontOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
using MetaData = FrontOffice.BFF.Application.Common.Models.MetaData;
namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetAllUserOrderByFilter;
public class GetAllUserOrderByFilterResponseDto
{

View File

@@ -1,3 +1,5 @@
using FrontOffice.BFF.UserOrder.Protobuf.Protos.UserOrder;
namespace FrontOffice.BFF.Application.UserOrderCQ.Queries.GetUserOrder;
public class GetUserOrderResponseDto
{

View File

@@ -4,7 +4,7 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.113</Version>
<Version>0.0.114</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>

View File

@@ -145,14 +145,14 @@ message GetAllUserOrderByFilterResponseModel
google.protobuf.Int64Value transaction_id = 4;
oneof PaymentStatus_item
{
messages.PaymentStatus payment_status = 5;
PaymentStatus payment_status = 5;
}
google.protobuf.Timestamp payment_date = 6;
int64 user_id = 7;
int64 user_address_id = 8;
oneof PaymentMethod_item
{
messages.PaymentMethod payment_method = 9;
PaymentMethod payment_method = 9;
}
google.protobuf.StringValue user_address_text = 10;
repeated GetAllUserOrderByFilterResponseModelFactorDetail factor_details = 11;