mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
17 lines
394 B
C#
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; }
|
|
}
|
|
}
|