Files
Backend-Api/CompanyManagment.App.Contracts/Loan/LoanInstallmentViewModel.cs
MahanCh d1e5adf96f add salaryAid calculation Date and
edit checkout on cahnge salary & ...
2025-05-08 14:08:28 +03:30

20 lines
614 B
C#

using System;
using _0_Framework.Application;
using CompanyManagment.App.Contracts.Workshop;
namespace CompanyManagment.App.Contracts.Loan;
public class LoanInstallmentViewModel
{
public long Id { get; set; }
public string Year { get; set; }
public string Month { get; set; }
public string Amount { get; set; }
public double AmountDouble { get; set; }
public string Day { get; set; }
public string DateFa { get; set; }
public DateTime DateGr { get; set; }
public IsActive IsActive { get; set; }
public string RemainingAmount { get; set; }
public string LoanAmount { get; set; }
}