EquipmentQueryModel.cs
331 Bytes
namespace HHECS.DAQWebClient.ViewModel
{
public class EquipmentQueryModel
{
public string? ProjectCode { get; set; }
public string? Code { get; set; }
public string? Name { get; set; }
public string? DestinationArea { get; set; }
public int EquipmentTypeId { get; set; }
}
}