btcpayserver/BTCPayServer/Data/Payouts/IClaimDestination.cs
2022-05-25 12:59:57 +02:00

10 lines
169 B
C#

#nullable enable
namespace BTCPayServer.Data
{
public interface IClaimDestination
{
public string? Id { get; }
decimal? Amount { get; }
}
}