Files
LaDOSE/LaDOSE.Src/LaDOSE.REST/Event/UpdatedEvent.cs
Darkstack 63db02d798 Test Connection
Add Todo
Bot use Webservice now
TBD : Rework Event
2019-03-27 00:37:11 +01:00

16 lines
356 B
C#

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;
}
}