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