using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; namespace zero.Core.Options { public abstract class ZeroBackofficeCollection { protected List Items { get; set; } = new List(); public IReadOnlyCollection GetAllItems() { return Items.AsReadOnly(); } } }