From 8466ce8cfc63b85bfea0be0203141d8af9d69d5f Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Thu, 20 Nov 2025 00:43:36 +0330 Subject: [PATCH] =?UTF-8?q?Generator=20Changes=20at=2011/20/2025=2012:40:5?= =?UTF-8?q?4=E2=80=AFAM=20+03:30?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../GetAllUserCartsByFilterResponseDto.cs | 14 ++++++++++++++ .../Protos/usercarts.proto | 7 +++++++ 2 files changed, 21 insertions(+) diff --git a/src/CMSMicroservice.Application/UserCartsCQ/Queries/GetAllUserCartsByFilter/GetAllUserCartsByFilterResponseDto.cs b/src/CMSMicroservice.Application/UserCartsCQ/Queries/GetAllUserCartsByFilter/GetAllUserCartsByFilterResponseDto.cs index d53fc02..528d1f6 100644 --- a/src/CMSMicroservice.Application/UserCartsCQ/Queries/GetAllUserCartsByFilter/GetAllUserCartsByFilterResponseDto.cs +++ b/src/CMSMicroservice.Application/UserCartsCQ/Queries/GetAllUserCartsByFilter/GetAllUserCartsByFilterResponseDto.cs @@ -16,4 +16,18 @@ public class GetAllUserCartsByFilterResponseDto public long UserId { get; set; } // public int Count { get; set; } + // + public string ProductTitle { get; set; } + // + public string ProductShortInfomation { get; set; } + // + public long ProductPrice { get; set; } + // + public int ProductDiscount { get; set; } + // + public string ProductThumbnailPath { get; set; } + // + public int Count { get; set; } + // + public DateTime Created { get; set; } } diff --git a/src/CMSMicroservice.Protobuf/Protos/usercarts.proto b/src/CMSMicroservice.Protobuf/Protos/usercarts.proto index c0cea84..1a4fcfd 100644 --- a/src/CMSMicroservice.Protobuf/Protos/usercarts.proto +++ b/src/CMSMicroservice.Protobuf/Protos/usercarts.proto @@ -100,4 +100,11 @@ message GetAllUserCartsByFilterResponseModel int64 product_id = 2; int64 user_id = 3; int32 count = 4; + string product_title = 5; + string product_short_infomation = 6; + int64 product_price = 7; + int32 product_discount = 8; + string product_thumbnail_path = 9; + int32 count = 10; + google.protobuf.Timestamp created = 11; }