AdcAndCfgOptions.cs 365 B

12345678910111213141516
  1. using Ips.Library.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Sps.Scheduling.SigAds
  8. {
  9. public class AdcAndCfgOptions
  10. {
  11. public AdcOptions AdOptions { get; set; }
  12. public List<CfqOptions> CfOptions { get; set; } = new List<CfqOptions>();
  13. }
  14. }