Merge branch 'newmain'

This commit is contained in:
masoodafar-web
2025-11-21 04:50:04 +03:30
parent 970b10152d
commit 974588da01
2 changed files with 18 additions and 33 deletions

View File

@@ -39,23 +39,18 @@ message AddNewUserCartRequest
message GetAllUserCartResponse
{
MetaData meta_data = 1;
repeated GetAllProductsByFilterResponseModel models = 2;
repeated GetAllUserCartResponseModel models = 2;
}
message GetAllProductsByFilterResponseModel
message GetAllUserCartResponseModel
{
int64 id = 1;
string title = 2;
string description = 3;
string short_infomation = 4;
string full_information = 5;
int64 price = 6;
int32 discount = 7;
int32 rate = 8;
string image_path = 9;
string thumbnail_path = 10;
int32 sale_count = 11;
int32 view_count = 12;
int32 remaining_count = 13;
string product_title = 2;
string product_short_infomation = 3;
int64 product_price = 4;
int32 product_discount = 5;
string product_thumbnail_path = 6;
int32 count = 7;
google.protobuf.Timestamp created = 8;
}
message UpdateUserCartRequest
{