22 lines
517 B
C#
22 lines
517 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 int PageSize { get; set; } = 30;
|
|
public bool ShowAsGrouped { get; set; }
|
|
}
|