ProductionStatResult.cs 284 B

123456789101112
  1. using System;
  2. namespace TeamAAS_VP.Models
  3. {
  4. public class ProductionStatResult
  5. {
  6. public DateTime PeriodStart { get; set; }
  7. public DateTime PeriodEnd { get; set; }
  8. public int Quantity { get; set; }
  9. public string ProductName { get; set; }
  10. }
  11. }