GatherCategory.cs 739 B

12345678910111213141516171819202122232425262728293031
  1. using System.Collections.Generic;
  2. namespace AIPlatform.Protocol.Entities
  3. {
  4. /// <summary>
  5. /// 采集大类
  6. /// </summary>
  7. public class GatherCategory : Entity
  8. {
  9. /// <summary>
  10. /// Gets or sets the name
  11. /// </summary>
  12. public string Name { get; set; }
  13. /// <summary>
  14. /// Gets or sets the organization
  15. /// </summary>
  16. public EntityBase Organization { get; set; }
  17. /// <summary>
  18. /// Gets or sets the gatherers
  19. /// </summary>
  20. public List<EntityBase> Gatherers { get; set; }
  21. public GatherCategory()
  22. {
  23. Organization = new EntityBase();
  24. Gatherers = new List<EntityBase>();
  25. }
  26. }
  27. }