feat(wallets): add DiscountBalance to GetAllUserWalletByFilter response; bump proto to 0.0.199
Build and Deploy to Kubernetes / build-and-deploy (push) Successful in 15m40s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
masoodafar-web
2026-05-18 01:13:56 +03:30
parent da1a2fcf8e
commit aac0d4271d
3 changed files with 3 additions and 5 deletions
@@ -8,12 +8,9 @@ public class GetAllUserWalletByFilterResponseDto
}public class GetAllUserWalletByFilterResponseModel
{
//شناسه
public long Id { get; set; }
//شناسه کاربر
public long UserId { get; set; }
//موجودی
public long Balance { get; set; }
//موجودی شبکه
public long NetworkBalance { get; set; }
public long DiscountBalance { get; set; }
}
@@ -3,7 +3,7 @@
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.198</Version>
<Version>0.0.199</Version>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
@@ -168,6 +168,7 @@ message GetAllUserWalletByFilterResponseModel
int64 balance = 3;
int64 network_balance = 4;
string user_name = 5;
int64 discount_balance = 6;
}
// ============= Customer-specific Messages =============