Files
Walleby/Wallet/WalletCommandHeaderCollection.cs
T
2024-06-09 14:00:36 +01:00

6 lines
173 B
C#

using System.Collections.ObjectModel;
namespace Wallet;
public class WalletCommandHeaderCollection(IList<IDisposable> list) :
ReadOnlyCollection<IDisposable>(list);