Files
nadekobot/src/NadekoBot/Db/Models/PlantedCurrency.cs
2021-12-19 05:14:11 +01:00

11 lines
330 B
C#

namespace NadekoBot.Services.Database.Models;
public class PlantedCurrency : DbEntity
{
public long Amount { get; set; }
public string Password { get; set; }
public ulong GuildId { get; set; }
public ulong ChannelId { get; set; }
public ulong UserId { get; set; }
public ulong MessageId { get; set; }
}