blob: 95095e51002a5b5b3a71f82a197162e7d2f64159 [file] [log] [blame]
using BaSys40.Models.Core.Identification;
using System.Collections.Generic;
namespace BaSys40.Models.Core.AssetAdministrationShell.Generics
{
public interface IElementContainer<Identifier, Elements> : IList<Elements>
{
Elements this[Identifier id] { get; }
}
}