Files

23 lines
573 B
C#
Raw Permalink Normal View History

2025-11-20 13:11:05 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AUTS.Domain.ViewModels
{
public class RequestCapacitySearch
{
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public int? PlineID { get; set; }
public int? ProjectID { get; set; }
public int? StationID { get; set; }
public string Customer { get; set; }
public string Order { get; set; }
public string Internalorder { get; set; }
}
}