Files
btcpayserver/BTCPayServer.Client/Models/ApprovePayoutRequest.cs
2020-06-25 13:35:10 +09:00

13 lines
249 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BTCPayServer.Client.Models
{
public class ApprovePayoutRequest
{
public int Revision { get; set; }
public string RateRule { get; set; }
}
}