using Eplan.EplApi.MasterData; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KPlan.Forms { class PartSyncDataRow { public int index { get; set; } public string partNr { get; set; } public string name { get; set; } public string itemID { get; set; } public string itemName { get; set; } public string itemRev { get; set; } public string type { get; set; } public string releaseStatus { get; set; } public string syncStatus { get; set; } public MDPart part { get; set; } public Teamcenter.Soa.Client.Model.Strong.ItemRevision tcRev { get; set; } public override bool Equals(object obj) { if (partNr!= null&&obj.GetType() == typeof(PartSyncDataRow)) { return partNr.Equals(((PartSyncDataRow)obj).partNr); } return false; } } }