Files
codeql/csharp/extractor/Semmle.Extraction/Entities/Base/LabelledEntity.cs
2021-05-06 19:12:13 +02:00

12 lines
188 B
C#

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