Test Connection
Add Todo Bot use Webservice now TBD : Rework Event
This commit is contained in:
16
LaDOSE.Src/LaDOSE.REST/Event/UpdatedEvent.cs
Normal file
16
LaDOSE.Src/LaDOSE.REST/Event/UpdatedEvent.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using LaDOSE.DTO;
|
||||
|
||||
namespace LaDOSE.REST.Event
|
||||
{
|
||||
public class UpdatedJwtEventHandler : EventArgs
|
||||
{
|
||||
private ApplicationUserDTO msg;
|
||||
public UpdatedJwtEventHandler(ApplicationUserDTO applicationUser)
|
||||
{
|
||||
this.msg = applicationUser;
|
||||
}
|
||||
|
||||
public ApplicationUserDTO Message => msg;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user