yangyin
2025-02-24 b3b65a002fe68b1383314098790f5a153b87765f
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 IPoisonComponentInterface
 
    public interface IPoisonComponent
    {
        ColorStyle Style { get; set; }
        ThemeStyle Theme { get; set; }
 
        PoisonStyleManager StyleManager { get; set; }
    }
 
    #endregion
}