forked from EllieBotDevs/elliebot
Added Db stuff
This commit is contained in:
parent
545786e23e
commit
9fff64f951
87 changed files with 2881 additions and 0 deletions
src/EllieBot/Db/Models
12
src/EllieBot/Db/Models/PlantedCurrency.cs
Normal file
12
src/EllieBot/Db/Models/PlantedCurrency.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
#nullable disable
|
||||
namespace EllieBot.Db.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; }
|
||||
}
|
Reference in a new issue