You can not 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
674 B
26 lines
674 B
using Eplan.EplApi.MasterData;
|
|
using KPlan.Forms.Bean;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KPlan.Forms {
|
|
public class SyncResult {
|
|
|
|
public SyncResult(KPartSyncDataRow dataRow) {
|
|
this.dataRow = dataRow;
|
|
}
|
|
public KPartSyncDataRow dataRow { get; set; }
|
|
public string partNr { get; set; }
|
|
public string orderNr { get; set; }
|
|
public string name { get; set; }
|
|
public string jldw { get; set; }
|
|
public string desc_cn { get; set; }
|
|
public string desc_en { get; set; }
|
|
public string reason { get; set; }
|
|
|
|
}
|
|
}
|