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