mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
13 lines
246 B
C#
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; }
|
|
}
|
|
}
|