2022-12-27 17:33:33 +08:00

17 lines
188 B
C#

using System;
namespace GoldPrinter
{
public class Footer : Outer
{
public Footer()
{
}
public Footer(int rows, int cols) : this()
{
base.Initialize(rows, cols);
}
}
}