mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 17:58:26 -04:00
9 lines
191 B
C#
9 lines
191 B
C#
#nullable disable
|
|
namespace NadekoBot;
|
|
|
|
public class SmartTextEmbedField
|
|
{
|
|
public string Name { get; set; }
|
|
public string Value { get; set; }
|
|
public bool Inline { get; set; }
|
|
} |