Files
archived-discord-bot/CompatBot/Utils/AsciiColumn.cs
13xforever 92751ba6e9 use file-scoped namespaces to reduce nesting
some formatting might be fucked
2022-06-30 00:59:46 +05:00

17 lines
414 B
C#

namespace CompatBot.Utils;
public sealed class AsciiColumn
{
public AsciiColumn(string? name = null, bool disabled = false, bool alignToRight = false, int maxWidth = 80)
{
Name = name;
Disabled = disabled;
AlignToRight = alignToRight;
MaxWidth = maxWidth;
}
public string? Name;
public bool Disabled;
public bool AlignToRight;
public int MaxWidth;
}