namespace FoodLabeling.Application.Contracts.Dtos.Partner; /// /// 合作伙伴详情 /// public class PartnerGetOutputDto { public string Id { get; set; } = string.Empty; public string PartnerName { get; set; } = string.Empty; public string? ContactEmail { get; set; } public string? PhoneNumber { get; set; } public bool State { get; set; } public DateTime CreationTime { get; set; } public DateTime? LastModificationTime { get; set; } }