btcpayserver/BTCPayServer/Data/Payouts/IClaimDestination.cs

11 lines
169 B
C#
Raw Normal View History

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