1234567891011121314151617181920 |
- using OilSourceModel.Models;
- using Shaker.Models;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics.CodeAnalysis;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Shaker.Models
- {
- public class AllConfig
- {
- public required OilSourceStatusModel OilSource { get; init; }
- public required ShakerConfigModel ShakerConfig { get; init; }
- }
- }
|