using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/**
* 外部往里边传入这个变量,
* 内部把这个拆分成一张纸,比如一张纸上有10个模板,那么就10个变量集合,不用打印数量,打印机了。
*
* */
namespace Io.Github.Kerwinxu.LibShapes.Core.Print
{
///
/// 打印项目
///
public class PrintItem
{
///
/// 打印机名称
///
public string PrinterName { get; set; }
///
/// 图形
///
public Shapes Shapes { get; set; }
///
/// 变量的集合
///
public List> Valss { get; set; }
///
/// 打印数量
///
public List PrintCounts { get; set; }
///
/// 是否充满打印,
///
public bool isFullPrint { get; set; }
///
/// 构造函数
///
public PrintItem()
{
// 初始化变量
Valss = new List>();
PrintCounts = new List();
}
}
}