Files
mixtape/zero.Core/Options/ZeroBackofficeCollection.cs
T

20 lines
374 B
C#
Raw Normal View History

2020-05-13 14:06:11 +02:00
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
2020-05-13 14:06:11 +02:00
using System.Text;
namespace zero.Core.Options
{
public abstract class ZeroBackofficeCollection<T>
{
protected List<T> Items { get; set; } = new List<T>();
public IReadOnlyCollection<T> GetAllItems()
{
return Items.AsReadOnly();
}
2020-05-13 14:06:11 +02:00
}
}