MarketPlace: new srv market added #14

Merged
mapoofano merged 10 commits from MarketPlace into v2 2025-02-19 12:46:29 +00:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit bb1ba83cf1 - Show all commits

View File

@ -22,9 +22,9 @@ message PaginationReq {
message PaginationResp {
uint32 page = 1; // in query param it will be p
uint32 page_size = 2; // in query param it will be pz
optional uint32 total_count = 3; // reponse
uint32 no = 1;
uint32 size = 2;
optional uint32 count = 3;
}
message BaseQueryParam {

View File

@ -52,6 +52,7 @@ message PurchaseRes {
}
message MarketOrderList {
base.v1.PaginationResp page = 2;
repeated MarketOrder list = 1;
}