Field.cs 496 B

1234567891011121314151617
  1. using DocumentFormat.OpenXml.Office2010.ExcelAc;
  2. using System.Collections.Generic;
  3. namespace TEAMModelOS.Models.ShanDa
  4. {
  5. public class Field
  6. {
  7. public double total { get; set; }
  8. public List<application> fields { get; set; } = new List<application>();
  9. }
  10. public class application {
  11. public string field { get; set; }
  12. public double percent { get; set; }
  13. public string desc { get; set; }
  14. public string dimension { get; set; }
  15. }
  16. }