mirror of
https://github.com/yawaflua/Lava.NET.git
synced 2025-12-10 04:19:29 +02:00
26 lines
518 B
C#
26 lines
518 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 Datum : IBase
|
|
{
|
|
/// <summary>
|
|
/// ID банка
|
|
/// </summary>
|
|
public object id { get; set; }
|
|
/// <summary>
|
|
/// Название
|
|
/// </summary>
|
|
public string name { get; set; }
|
|
}
|
|
|
|
public class SBPBanks : IBase
|
|
{
|
|
public List<Datum> data { get; set; }
|
|
}
|
|
}
|