Files
btcpayserver/BTCPayServer.Client/Models/ApprovePayoutRequest.cs
2020-06-28 21:44:35 -05:00

13 lines
246 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; }
}
}