20 lines
388 B
C#
20 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AUTS.Domain.ViewModels
|
|
{
|
|
public class RequestOrderStats
|
|
{
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
public DateTime? EndDate { get; set; }
|
|
|
|
public int ProjectID { get; set; }
|
|
|
|
public bool IsOrder { get; set; }
|
|
}
|
|
}
|