Beispiel #1
0
        public object Clone()
        {
            var c = new GenericPropertyData(id, type, value);

            return(c);
        }
Beispiel #2
0
        public GenericPropertyData GetProperty(string id)
        {
            GenericPropertyData g = properties.FirstOrDefault(p => p.id == id);

            return(g ?? new GenericPropertyData());
        }