public object Clone() { var c = new GenericPropertyData(id, type, value); return(c); }
public GenericPropertyData GetProperty(string id) { GenericPropertyData g = properties.FirstOrDefault(p => p.id == id); return(g ?? new GenericPropertyData()); }