using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CustomComponents.Helpers; namespace WinFormForTest.TestClasses { public class Plant { public string Type { get; set; } public string Name { get; set; } [AlwaysCreate] public string Color { get; set; } public Plant(string type, string name, string color) { Type = type; Name = name; Color = color; } public Plant() { } } }