mirror of
https://github.com/yawaflua/Lava.NET.git
synced 2025-12-10 04:19:29 +02:00
Add project files.
This commit is contained in:
29
Types/LavaAPI/Transfer.cs
Normal file
29
Types/LavaAPI/Transfer.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Lava.NET.Types.LavaAPI
|
||||
{
|
||||
public class Transfer : IBase
|
||||
{
|
||||
public string account_from { get; set; }
|
||||
public string account_to { get; set;}
|
||||
public int substract { get; set; } = 0;
|
||||
public int amount { get; set; }
|
||||
public string? comment { get; set; }
|
||||
}
|
||||
public class TransferData : IBase
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string created_at { get; set; }
|
||||
public string amount { get; set; }
|
||||
public string status { get; set; }
|
||||
public object comment { get; set; }
|
||||
public string currency { get; set; }
|
||||
public string type { get; set; }
|
||||
public string receiver { get; set; }
|
||||
public string commission { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user