namespace NPP.SmartSchedue.Api.Contracts.Services.Personnel.Input; /// /// 添加资质 /// public class QualificationAddInput { /// /// 名称 /// public string Name { get; set; } /// /// 描述 /// public string Description { get; set; } /// /// 等级 /// public string Level { get; set; } }