using System;
using System.Collections.Generic;
namespace TeamAAS_VP.Models
{
public class ProductionStatQuery
{
public string ProductName { get; set; }
///
/// categories to include in sum, if null include all
///
public IEnumerable Categories { get; set; }
///
/// start time inclusive
///
public DateTime Start { get; set; }
///
/// end time exclusive
///
public DateTime End { get; set; }
///
/// group by: "hour","day","week","month","total"
///
public string GroupBy { get; set; }
}
}