Files
codeql/powershell/extractor/Semmle.Extraction.PowerShell/Entities/Base/IExtractedEntity.cs
2024-08-14 18:11:02 +01:00

17 lines
394 B
C#

using System.Collections.Generic;
namespace Semmle.Extraction.PowerShell.Entities
{
/// <summary>
/// An entity which has been extracted.
/// </summary>
internal interface IExtractedEntity : IExtractionProduct, IEntity
{
/// <summary>
/// The contents of the entity.
/// </summary>
IEnumerable<IExtractionProduct> Contents { get; }
}
}