15 lines
427 B
C#
15 lines
427 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Loan;
|
|
|
|
public class CreateLoanViewModel
|
|
{
|
|
public List<long> EmployeeIds { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public string StartInstallmentPayment { get; set; }
|
|
public string LoanGrantDate { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
public string Amount { get; set; }
|
|
public bool GetRounded { get; set; }
|
|
} |