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.
24 lines
572 B
24 lines
572 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KPlan.Forms.Bean {
|
|
class PartSyncConfigBean {
|
|
|
|
public string from { get; set; }
|
|
public string to { get; set; }
|
|
|
|
public override bool Equals(object obj) {
|
|
if (obj != null && obj.GetType() == typeof(PartSyncConfigBean)) {
|
|
PartSyncConfigBean b = (PartSyncConfigBean)obj;
|
|
if (to != null) {
|
|
return to.Equals(b.to);
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|