mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-01 13:14:30 +01:00
11 lines
169 B
C#
11 lines
169 B
C#
#nullable enable
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public interface IClaimDestination
|
|
{
|
|
public string? Id { get; }
|
|
decimal? Amount { get; }
|
|
}
|
|
}
|