Files
spworlds-csharp-library/Types/Card.cs
yawaflua 2df80a4c4b update
2024-04-18 18:38:00 +03:00

15 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace spworlds.Types
{
public class Card
{
public int Balance { get; set; }
public string Webhook { get; set; }
}
}