mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
8 lines
228 B
C#
8 lines
228 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Data;
|
||
|
|
||
|
namespace BTCPayServer.PayoutProcessors;
|
||
|
|
||
|
public record AfterPayoutActionData(StoreData Store, PayoutProcessorData ProcessorData,
|
||
|
IEnumerable<PayoutData> Payouts);
|