1234567891011121314151617 |
- using DocumentFormat.OpenXml.Office2010.ExcelAc;
- using System.Collections.Generic;
- namespace TEAMModelOS.Models.ShanDa
- {
- public class Field
- {
- public double total { get; set; }
- public List<application> fields { get; set; } = new List<application>();
- }
- public class application {
- public string field { get; set; }
- public double percent { get; set; }
- public string desc { get; set; }
- public string dimension { get; set; }
- }
- }
|