yavsc/BookAStar/BookAStar/IdentificationChangedEventA...

14 lines
326 B
C#

using BookAStar.Model.Auth.Account;
using System;
namespace BookAStar
{
public class IdentificationChangedEventArgs : EventArgs
{
public User NewIdentification { get; private set; }
public IdentificationChangedEventArgs(User newId)
{
NewIdentification = newId;
}
}
}