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

18 lines
474 B
C#

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