PartnerGetOutputDto.cs
496 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Partner;
/// <summary>
/// 合作伙伴详情
/// </summary>
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; }
}