CPF/CPF.ReoGrid/Main/ITimerSupportedAdapter.cs
2024-06-24 10:15:59 +08:00

12 lines
140 B
C#

using System;
namespace CPF.ReoGrid.Main
{
internal interface ITimerSupportedAdapter
{
void StartTimer();
void StopTimer();
}
}