AllConfig.cs 729 B

12345678910111213141516171819202122232425262728
  1. using Shaker.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Diagnostics.CodeAnalysis;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Shaker.Models
  9. {
  10. public class AllConfig
  11. {
  12. [AllowNull]
  13. public OilSourceStatusModel OilSource { get; set; }
  14. [AllowNull]
  15. public ShakerControlModel ShakerControl { get; set; }
  16. [AllowNull]
  17. public ShakerStatusModel ShakerStatus { get; set; }
  18. [AllowNull]
  19. public SweepConfigModel SweepConfig { get; set; }
  20. [AllowNull]
  21. public ShakerConfigModel ShakerConfig { get; set; }
  22. [AllowNull]
  23. public RandomConfigModel RandomConfig { get; set; }
  24. }
  25. }