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.

23 lines
597 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KPlan.Forms.Bean {
class PartSyncClassConfigBean {
public string from { get; set; }
public string to { get; set; }
public override bool Equals(object obj) {
if (obj != null && obj.GetType() == typeof(PartSyncClassConfigBean)) {
PartSyncClassConfigBean b = (PartSyncClassConfigBean)obj;
if (from != null) {
return from.Equals(b.from);
}
}
return false;
}
}
}