Files
Walleby/Wallet/ItemCommandHeaderCollection.cs
T
TheXamlGuy 9daebc7ba2 Codemaid
2024-07-17 21:43:58 +01:00

6 lines
171 B
C#

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