Files
codeql/csharp/extractor/Semmle.Extraction/Entities/Base/LabelledEntity.cs
2023-08-21 09:41:28 +02:00

10 lines
170 B
C#

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