Files
LaDOSE/LaDOSE.Src/LaDOSE.REST/Event/UpdatedEvent.cs

16 lines
365 B
C#
Raw Normal View History

using System;
using LaDOSE.DTO;
namespace LaDOSE.REST.Event
{
public class UpdatedJwtEventHandler : EventArgs
{
2019-03-27 00:47:14 +01:00
private readonly ApplicationUserDTO msg;
public UpdatedJwtEventHandler(ApplicationUserDTO applicationUser)
{
this.msg = applicationUser;
}
public ApplicationUserDTO Message => msg;
}
}