namespace FoodLabeling.Application.Contracts.Dtos.Partner;
///
/// 新建合作伙伴入参
///
public class PartnerCreateInputVo : PartnerAddressFieldsDto
{
public string PartnerName { get; set; } = string.Empty;
public string? ContactEmail { get; set; }
public string? PhoneNumber { get; set; }
///
/// 是否启用(Active / Inactive)
///
public bool State { get; set; } = true;
}