using System; using System.Collections.Generic; using System.Text; namespace zero.Core.Options { public abstract class ZeroBackofficeCollection { protected IList Items { get; set; } = new List(); } }