Timer lock work done
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
namespace Toolkit.Foundation;
|
||||
|
||||
public record ActivatedEventArgs<TSender>(TSender? Sender = default);
|
||||
public record ActivatedEventArgs<TSender>(TSender? Sender = default);
|
||||
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user