mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-13 02:38:27 -04:00
- Added cleanup migration, it will clean the ef migration history, and delete unused fields - Started working on README.md
9 lines
193 B
C#
9 lines
193 B
C#
namespace NadekoBot.Services.Database.Models
|
|
{
|
|
public class CommandAlias : DbEntity
|
|
{
|
|
public string Trigger { get; set; }
|
|
public string Mapping { get; set; }
|
|
}
|
|
}
|