mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 09:48:26 -04:00
10 lines
206 B
C#
10 lines
206 B
C#
#nullable disable
|
|
namespace NadekoBot.Modules.Games.Common;
|
|
|
|
public class TypingArticle
|
|
{
|
|
public string Source { get; set; }
|
|
public string Extra { get; set; }
|
|
public string Text { get; set; }
|
|
}
|