-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFrameMethod.cs
More file actions
24 lines (21 loc) · 789 Bytes
/
Copy pathFrameMethod.cs
File metadata and controls
24 lines (21 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace NetStackBeautifier.Core
{
public record FrameMethod
{
public string? Name { get; init; }
/// <summary>
/// Gets or initializes the parameter list for the method.
/// </summary>
public IEnumerable<FrameParameter> Parameters { get; init; } = Enumerable.Empty<FrameParameter>();
/// <summary>
/// Generic types.
/// </summary>
/// <typeparam name="string"></typeparam>
public IEnumerable<string> GenericParameterTypes{get; init;} = Enumerable.Empty<string>();
/// <summary>
/// Generic types.
/// </summary>
/// <typeparam name="string"></typeparam>
public IEnumerable<string> RawGenericParameterTypes{get; init;} = Enumerable.Empty<string>();
}
}