Files

56 lines
1.3 KiB
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
/**
*
* 1010,
*
* */
namespace Io.Github.Kerwinxu.LibShapes.Core.Print
{
/// <summary>
/// 打印项目
/// </summary>
public class PrintItem
{
/// <summary>
/// 打印机名称
/// </summary>
public string PrinterName { get; set; }
/// <summary>
/// 图形
/// </summary>
public Shapes Shapes { get; set; }
/// <summary>
/// 变量的集合
/// </summary>
public List<Dictionary<string, string>> Valss { get; set; }
/// <summary>
/// 打印数量
/// </summary>
public List<int> PrintCounts { get; set; }
/// <summary>
/// 是否充满打印,
/// </summary>
public bool isFullPrint { get; set; }
/// <summary>
/// 构造函数
/// </summary>
public PrintItem()
{
// 初始化变量
Valss = new List<Dictionary<string, string>>();
PrintCounts = new List<int>();
}
}
}