using System.Collections.Generic; namespace StructureHelper.Infrastructure { public class NamedList : List { public string Name { get; set; } } }