8 lines
178 B
C#
8 lines
178 B
C#
namespace TheXamlGuy.TaskbarGroup.Core
|
|
{
|
|
public interface IDispatcherTimerFactory
|
|
{
|
|
IDispatcherTimer Create(Action actionDelegate, TimeSpan interval);
|
|
}
|
|
}
|