Files
nadekobot/src/NadekoBot/Db/Models/PlantedCurrency.cs
2021-12-29 06:07:16 +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; }
}