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