mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
188 B
C#
10 lines
188 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for method entities.
|
|
/// </summary>
|
|
public interface IMethodEntity : IEntity
|
|
{
|
|
}
|
|
}
|