tangxu
2024-10-16 56b9a880c8def4c0fc06f89919157fa238beeeb4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#region Imports
 
using DPumpHydr.WinFrmUI.RLT.Enum.Poison;
using DPumpHydr.WinFrmUI.RLT.Manager;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Interface.Poison
{
    #region IPoisonFormInterface
 
    public interface IPoisonForm
    {
        ColorStyle Style { get; set; }
        ThemeStyle Theme { get; set; }
 
        PoisonStyleManager StyleManager { get; set; }
    }
 
    #endregion
}