Generator Changes at 11/20/2025 12:40:54 AM +03:30

This commit is contained in:
masoodafar-web
2025-11-20 00:43:36 +03:30
parent 7840f3b463
commit 8466ce8cfc
2 changed files with 21 additions and 0 deletions

View File

@@ -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; }
}

View File

@@ -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;
}