using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core.Models { /// /// 菜单导入字段 /// public class MenuImportFieldCommand : IRequest { /// /// 接口地址 /// public string Url { get; set; } } }