Exemplo n.º 1
0
        public object Clone()
        {
            var item = new LocaleCategory()
            {
                Name = name
            };

            item.AddRange(items);
            return(item);
        }
Exemplo n.º 2
0
 public override void SetValue(LocaleCategory target, string value) => target.Name = value;
Exemplo n.º 3
0
 public override string GetValue(LocaleCategory target) => target.Name;