Timer lock work done

This commit is contained in:
TheXamlGuy
2024-07-18 21:45:15 +01:00
parent e20890362e
commit 5c1b776317
5 changed files with 67 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
namespace Toolkit.Foundation;
public record ActivatedEventArgs<TSender>(TSender? Sender = default);
public record ActivatedEventArgs<TSender>(TSender? Sender = default);
+10
View File
@@ -0,0 +1,10 @@
namespace Toolkit.Foundation;
public interface IUserInteraction
{
event EventHandler<UserInteractedEventArgs>? UserInteracted;
void Stop();
void Start();
}
@@ -0,0 +1,4 @@
namespace Toolkit.Foundation;
public class UserInteractedEventArgs :
EventArgs;