mirror of
https://github.com/github/codeql.git
synced 2026-04-12 10:34:02 +02:00
10 lines
190 B
C#
10 lines
190 B
C#
namespace Semmle.Extraction.CSharp.Entities
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for parameter entities.
|
|
/// </summary>
|
|
internal interface IParameter : IEntity
|
|
{
|
|
}
|
|
}
|