btcpayserver/BTCPayServer/Data/Payouts/IClaimDestination.cs
2024-10-19 21:33:34 +09:00

10 lines
169 B
C#

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