mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +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
|
|
{
|
|
}
|
|
}
|