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