forked from EllieBotDevs/elliebot
8 lines
No EOL
173 B
C#
8 lines
No EOL
173 B
C#
#nullable disable
|
|
namespace EllieBot.Db.Models;
|
|
|
|
public class CommandCooldown : DbEntity
|
|
{
|
|
public int Seconds { get; set; }
|
|
public string CommandName { get; set; }
|
|
} |