using System.Collections.Generic; namespace Semmle.Extraction.CIL { /// /// A CIL entity which has been extracted. /// internal interface IExtractedEntity : IExtractionProduct, IEntity { /// /// The contents of the entity. /// IEnumerable Contents { get; } } }