namespace FoodLabeling.Application.Contracts.Dtos.Partner; /// /// 新建合作伙伴入参 /// public class PartnerCreateInputVo { public string PartnerName { get; set; } = string.Empty; public string? ContactEmail { get; set; } public string? PhoneNumber { get; set; } public bool State { get; set; } = true; }