mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-30 14:52:51 +08:00
13 lines
342 B
C#
13 lines
342 B
C#
namespace Spectre.Console
|
|
{
|
|
internal sealed class FigletHeader
|
|
{
|
|
public char Hardblank { get; set; }
|
|
public int Height { get; set; }
|
|
public int Baseline { get; set; }
|
|
public int MaxLength { get; set; }
|
|
public int OldLayout { get; set; }
|
|
public int CommentLines { get; set; }
|
|
}
|
|
}
|