Files
nadekobot/src/NadekoBot/Db/Models/CommandCooldown.cs
Kwoth d42705087e - Database namespace is now NadekoBot.Db
- Db related code is now in src/NadekoBot/Db
- Finished major part of the db refactor, but many optimizations are left to be made
2021-09-06 21:34:43 +02:00

9 lines
202 B
C#

namespace NadekoBot.Core.Services.Database.Models
{
public class CommandCooldown : DbEntity
{
public int Seconds { get; set; }
public string CommandName { get; set; }
}
}