123123
This commit is contained in:
@@ -2,9 +2,19 @@
|
||||
{
|
||||
public class PrototypeSet
|
||||
{
|
||||
public string FunctionPrefix { get; set; } = string.Empty;
|
||||
public string ProperName { get; set; } = string.Empty;
|
||||
public string FunctionName { get; set; } = string.Empty;
|
||||
public FunctionPrototype Value { get; set; } = new();
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public PrototypeSet()
|
||||
{
|
||||
FunctionPrefix = string.Empty;
|
||||
ProperName = string.Empty;
|
||||
FunctionName = string.Empty;
|
||||
Value = new();
|
||||
}
|
||||
public string FunctionPrefix { get; set; }
|
||||
public string ProperName { get; set; }
|
||||
public string FunctionName { get; set; }
|
||||
public FunctionPrototype Value { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user