7 lines
174 B
C#
7 lines
174 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Bitvault;
|
|
|
|
public class ItemCommandHeaderCollection(IList<IDisposable> list) :
|
|
ReadOnlyCollection<IDisposable>(list);
|