13 lines
216 B
C#
13 lines
216 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Bitvault;
|
|
|
|
public class CommandCollection :
|
|
ReadOnlyCollection<IDisposable>
|
|
{
|
|
public CommandCollection(IList<IDisposable> list) : base(list)
|
|
{
|
|
|
|
}
|
|
}
|