ComBaseImpactEntity2.cs 568 B

12345678910111213141516171819202122
  1. using Newtonsoft.Json;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. namespace Core.StlMes.Client.Qcm.model
  5. {
  6. public class ComBaseImpactEntity2 : ComBaseImpactEntity
  7. {
  8. private List<ComBaseImpactCEntity> subList = new List<ComBaseImpactCEntity>();
  9. /// <summary>
  10. /// sublist
  11. /// </summary>
  12. [Description("subList")]
  13. [JsonProperty("subList")]
  14. public List<ComBaseImpactCEntity> SubList
  15. {
  16. get { return subList; }
  17. set { subList = value; }
  18. }
  19. }
  20. }