btcpayserver/BTCPayServer/Events/UserConfirmedEmailEvent.cs

11 lines
199 B
C#
Raw Normal View History

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