RunGroupPackageDto.cs 249 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace WeEngine.CommonDto
  3. {
  4. public class RunGroupPackageDto
  5. {
  6. /// <summary>
  7. /// 分组编号
  8. /// </summary>
  9. public List<string> GroupNos { get; set; }
  10. }
  11. }