mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +01:00
13 lines
258 B
C#
13 lines
258 B
C#
|
using System;
|
||
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.Events
|
||
|
{
|
||
|
public class UserApprovedEvent
|
||
|
{
|
||
|
public ApplicationUser User { get; set; }
|
||
|
public bool Approved { get; set; }
|
||
|
public Uri RequestUri { get; set; }
|
||
|
}
|
||
|
}
|