using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.Module.PrintModule { /// /// 打印返回 /// public class PrintStreamRes { /// /// 打印类型 /// public string PrintType { get; set; } /// /// 打印数据流 /// public string PrintData { get; set; } } }