Add project files.

This commit is contained in:
yawaflua
2024-03-07 18:11:59 +03:00
parent aee40c9686
commit 9f29952f71
19 changed files with 736 additions and 0 deletions

19
Types/LavaAPI/SBPBanks.cs Normal file
View File

@@ -0,0 +1,19 @@
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
{
public object id { get; set; }
public string name { get; set; }
}
public class SBPBanks : IBase
{
public List<Datum> data { get; set; }
}
}