Files
Backend-Api/CompanyManagment.App.Contracts/MasterPetition/MasterPetitionSearchModel.cs
2024-07-05 21:36:15 +03:30

13 lines
493 B
C#

namespace CompanyManagment.App.Contracts.MasterPetition;
public class MasterPetitionSearchModel
{
//public string PetitionIssuanceDate { get; set; }
//public string NotificationPetitionDate { get; set; }
//public string TotalPenalty { get; set; }
//public string TotalPenaltyTitles { get; set; }
public string Description { get; set; }
public string WorkHistoryDescription { get; set; }
public long Board_Id { get; set; }
public long File_Id { get; set; }
}