23 lines
573 B
C#
23 lines
573 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.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; }
|
|
|
|
}
|
|
}
|