AllConfig.cs 420 B

1234567891011121314151617181920
  1. using OilSourceModel.Models;
  2. using Shaker.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Diagnostics.CodeAnalysis;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Shaker.Models
  10. {
  11. public class AllConfig
  12. {
  13. public required OilSourceStatusModel OilSource { get; init; }
  14. public required ShakerConfigModel ShakerConfig { get; init; }
  15. }
  16. }