Files
Backend-Api/CompanyManagment.App.Contracts/Loan/LoanSearchViewModel.cs
2025-04-13 22:23:25 +03:30

21 lines
476 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Loan;
public class LoanSearchViewModel
{
public long Id { get; set; }
public long EmployeeId { get; set; }
public long WorkshopId { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
public int PageIndex { get; set; }
public bool ShowAsGrouped { get; set; }
}