Add contextual commands

This commit is contained in:
TheXamlGuy
2024-05-19 14:18:08 +01:00
parent 6718675f12
commit e733728022
11 changed files with 60 additions and 71 deletions
+12
View File
@@ -0,0 +1,12 @@
using System.Collections.ObjectModel;
namespace Bitvault;
public class CommandCollection :
ReadOnlyCollection<IDisposable>
{
public CommandCollection(IList<IDisposable> list) : base(list)
{
}
}