mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
14 lines
290 B
C#
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; }
|
|
}
|
|
}
|