btcpayserver/BTCPayServer/Events/UserRegisteredEvent.cs

13 lines
257 B
C#
Raw Normal View History

using System;
using BTCPayServer.Data;
namespace BTCPayServer.Events
{
public class UserRegisteredEvent
{
public ApplicationUser User { get; set; }
public bool Admin { get; set; }
public Uri RequestUri { get; set; }
}
}