mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
11 lines
199 B
C#
11 lines
199 B
C#
|
using System;
|
||
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.Events;
|
||
|
|
||
|
public class UserConfirmedEmailEvent
|
||
|
{
|
||
|
public ApplicationUser User { get; set; }
|
||
|
public Uri RequestUri { get; set; }
|
||
|
}
|