6 lines
149 B
C#
6 lines
149 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IDispatcherTimerFactory
|
|
{
|
|
IDispatcherTimer Create(Action actionDelegate, TimeSpan interval);
|
|
} |