Add contextual commands
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Bitvault;
|
||||
|
||||
public class CommandCollection :
|
||||
ReadOnlyCollection<IDisposable>
|
||||
{
|
||||
public CommandCollection(IList<IDisposable> list) : base(list)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user