mirror of
https://github.com/yawaflua/Lava.NET.git
synced 2025-12-10 04:19:29 +02:00
16 lines
334 B
C#
16 lines
334 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 Wallet : IBase
|
|
{
|
|
public string account { get; set; }
|
|
public string currency { get; set; }
|
|
public string balance { get; set; }
|
|
}
|
|
}
|