CurrencyAlertClassic/KamiLib/Interfaces/IInfoBoxTableRow.cs

18 lines
342 B
C#
Raw Normal View History

2023-10-13 09:38:52 +00:00
using KamiLib.Drawing;
namespace KamiLib.Interfaces;
public interface IInfoBoxTableConfigurationRow
{
void GetConfigurationRow(InfoBoxTable owner);
}
public interface IInfoBoxTableDataRow
{
void GetDataRow(InfoBoxTable owner);
}
public interface IInfoBoxListConfigurationRow
{
void GetConfigurationRow(InfoBoxList owner);
}