Add CreatedAt field to wallet change log responses

This commit is contained in:
masoodafar-web
2025-11-28 14:07:10 +03:30
parent a3c7033d95
commit 99ef7983f8
4 changed files with 14 additions and 2 deletions

View File

@@ -87,6 +87,7 @@ message GetUserWalletChangeLogResponse
int64 change_nerwork_value = 6;
bool is_increase = 7;
google.protobuf.Int64Value refrence_id = 8;
google.protobuf.Timestamp created_at = 9;
}
message GetAllUserWalletChangeLogByFilterRequest
{
@@ -119,4 +120,5 @@ message GetAllUserWalletChangeLogByFilterResponseModel
int64 change_nerwork_value = 6;
bool is_increase = 7;
google.protobuf.Int64Value refrence_id = 8;
google.protobuf.Timestamp created_at = 9;
}