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

12 lines
188 B
C#

using System.IO;
namespace Semmle.Extraction
{
public abstract class LabelledEntity : Entity
{
protected LabelledEntity(Context cx) : base(cx)
{
}
}
}