Files
nadekobot/NadekoBot.Core/Services/Database/Models/PlantedCurrency.cs
2021-09-06 21:29:22 +02:00

13 lines
374 B
C#

namespace NadekoBot.Core.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; }
}
}