CurrencyAlertClassic/KamiLib/Interfaces/IInfoBoxTableRow.cs

18 lines
342 B
C#

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);
}