using System.Collections.Generic; namespace Model.Models { /// /// 方法纯数据类(对应 UIShare.UIViewModel.MethodModel) /// public class Method { public string? Name { get; set; } public string? FullName { get; set; } public IList Parameters { get; set; } = new List(); } }