mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
8 lines
171 B
C#
8 lines
171 B
C#
#nullable disable
|
|
namespace Nadeko.Bot.Db.Models;
|
|
|
|
public class CommandAlias : DbEntity
|
|
{
|
|
public string Trigger { get; set; }
|
|
public string Mapping { get; set; }
|
|
} |