17 lines
378 B
C#
17 lines
378 B
C#
using System.Collections.Generic;
|
||
|
||
namespace Model.Models
|
||
{
|
||
/// <summary>
|
||
/// 方法纯数据类(对应 UIShare.UIViewModel.MethodModel)
|
||
/// </summary>
|
||
public class Method
|
||
{
|
||
public string? Name { get; set; }
|
||
|
||
public string? FullName { get; set; }
|
||
|
||
public IList<Parameter> Parameters { get; set; } = new List<Parameter>();
|
||
}
|
||
}
|