13 lines
130 B
C#

using System;
namespace GoldPrinter
{
public class Bottom : Top
{
public Bottom()
{
this.IsDrawAllPage = true;
}
}
}