using System; using System.Collections.Generic; namespace CadParamPluging.Common { [Serializable] public class TemplateSchemas { public List Items { get; set; } public TemplateSchemas() { Items = new List(); } public void Normalize() { if (Items == null) { Items = new List(); } foreach (var it in Items) { it?.Normalize(); } } } }