Added SmartText and inheritors SmartPlainText and SmartEmbedText which will replace CREmbed in the future

This commit is contained in:
Kwoth
2021-07-10 23:31:12 +02:00
parent 5e4754fa40
commit 236c286278
7 changed files with 224 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace NadekoBot
{
public class SmartTextEmbedField
{
public string Name { get; set; }
public string Value { get; set; }
public bool Inline { get; set; }
}
}