You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Printer
{
public class VariableItem
{
public VariableItem()
{
this.Key = "不绑定变量";
this.Value = "";
}
public string Key { get; set; }
public string Value { get; set; }
public override string ToString()
{
return this.Key;
}
}
}