| 12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using System.Collections.Generic;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Qcm.model
- {
- public class ComBaseImpactEntity2 : ComBaseImpactEntity
- {
- private List<ComBaseImpactCEntity> subList = new List<ComBaseImpactCEntity>();
- /// <summary>
- /// sublist
- /// </summary>
- [Description("subList")]
- [JsonProperty("subList")]
- public List<ComBaseImpactCEntity> SubList
- {
- get { return subList; }
- set { subList = value; }
- }
- }
- }
|