Files
LaDOSE/LaDOSE.Src/LaDOSE.REST/Event/UpdatedEvent.cs
2019-03-27 00:47:14 +01:00

16 lines
365 B
C#

using System;
using LaDOSE.DTO;
namespace LaDOSE.REST.Event
{
public class UpdatedJwtEventHandler : EventArgs
{
private readonly ApplicationUserDTO msg;
public UpdatedJwtEventHandler(ApplicationUserDTO applicationUser)
{
this.msg = applicationUser;
}
public ApplicationUserDTO Message => msg;
}
}