mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
17 lines
414 B
C#
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;
|
|
} |