using System.Collections.Generic; namespace Nethereum.Signer { public class AccessListItem { public string Address { get; set; } public List StorageKeys { get; set; } public AccessListItem() { StorageKeys = new List(); } public AccessListItem(string address, List storageKeys) { this.Address = address; this.StorageKeys = storageKeys; } } }