Files
nadekobot/src/Nadeko.Bot.Db/Models/PlantedCurrency.cs
2023-03-14 15:48:59 +01:00

12 lines
345 B
C#

#nullable disable
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; }
}