btcpayserver/BTCPayServer/Events/UserRegisteredEvent.cs
2020-04-10 15:59:39 +09:00

14 lines
290 B
C#

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