22 lines
352 B
C#
22 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DiscordBot.Utilities
|
|
{
|
|
public enum TableFormat
|
|
{
|
|
CENTER_EACH_COLUMN_BASED,
|
|
CENTER_OVERALL_LENGTH,
|
|
DEFAULT
|
|
}
|
|
|
|
public enum ProgressBarType
|
|
{
|
|
NORMAL,
|
|
NO_END
|
|
}
|
|
}
|