mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
11 lines
280 B
C#
11 lines
280 B
C#
|
namespace BTCPayServer.Data
|
||
|
{
|
||
|
public class ManualPayoutProof : IPayoutProof
|
||
|
{
|
||
|
public static string Type = "ManualPayoutProof";
|
||
|
public string ProofType { get; } = Type;
|
||
|
public string Link { get; set; }
|
||
|
public string Id { get; set; }
|
||
|
}
|
||
|
}
|