btcpayserver/BTCPayServer/Events/UserApprovedEvent.cs

11 lines
193 B
C#
Raw Normal View History

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