mirror of
https://github.com/yawaflua/Lava.NET.git
synced 2025-12-09 20:09:26 +02:00
18 lines
380 B
C#
18 lines
380 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Lava.NET.Types.LavaAPI
|
|
{
|
|
public class DefaultResponse : IBase
|
|
{
|
|
public string id { get; set; }
|
|
public string status { get; set; }
|
|
public string amount { get; set; }
|
|
public int commission { get; set; }
|
|
}
|
|
|
|
}
|