12345678910111213141516171819202122232425262728293031 |
- using System.Collections.Generic;
- namespace AIPlatform.Protocol.Entities
- {
- /// <summary>
- /// 采集大类
- /// </summary>
- public class GatherCategory : Entity
- {
- /// <summary>
- /// Gets or sets the name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// Gets or sets the organization
- /// </summary>
- public EntityBase Organization { get; set; }
- /// <summary>
- /// Gets or sets the gatherers
- /// </summary>
- public List<EntityBase> Gatherers { get; set; }
- public GatherCategory()
- {
- Organization = new EntityBase();
- Gatherers = new List<EntityBase>();
- }
- }
- }
|