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

16 lines
356 B
C#
Raw Normal View History

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