mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 10:18:27 -04:00
8 lines
185 B
C#
8 lines
185 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class CommandAlias : DbEntity
|
|
{
|
|
public string Trigger { get; set; }
|
|
public string Mapping { get; set; }
|
|
} |