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

13 lines
130 B
C#

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