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

7 lines
172 B
C#

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