示例#1
0
文件: SpoolerInfo.cs 项目: urish/M3D
 public void CopyFrom(SpoolerInfo other)
 {
     Version = other.Version;
     SupportPrinterProfiles = new List <EmbeddedFirmwareSummary>(other.SupportPrinterProfiles);
     PrinterProfileList     = new List <PrinterProfile>(other.PrinterProfileList);
 }
示例#2
0
文件: SpoolerInfo.cs 项目: urish/M3D
 public SpoolerInfo(SpoolerInfo other)
 {
     CopyFrom(other);
 }