20 lines
614 B
C#
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; }
|
|
} |