using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FATrace.App.UniCodeToZPL
{
///
/// 压缩字符统计
///
public class CompressCodeInfo
{
///
///
///
/// 压缩字符
/// 数量
public CompressCodeInfo(string code, int count)
{
this.code = code;
this.count = count;
}
private string code;
///
/// 压缩的字符
///
public string Code
{
get { return code; }
set { code = value; }
}
private int count = 0;
///
/// 数量
///
public int Count
{
get { return count; }
set { count = value; }
}
}
}