7 lines
211 B
C#
7 lines
211 B
C#
namespace CompanyManagment.App.Contracts.InstitutionContract;
|
|
|
|
public class TotalbalancViewModel
|
|
{
|
|
public string TotalBalanceStr { get; set; } = "0";
|
|
public double TotalBalanceDbl { get; set; } = 0;
|
|
} |