20 lines
387 B
C#
20 lines
387 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace AUTS.Domain.ViewModels
|
|||
|
|
{
|
|||
|
|
public class RequestOVSearch
|
|||
|
|
{
|
|||
|
|
public DateTime? startDate { get; set; }
|
|||
|
|
public DateTime? endDate { get; set; }
|
|||
|
|
public int? plineID { get; set; }
|
|||
|
|
public int? projectID { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|