PartnerGetOutputDto.cs 231 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Partner;

/// <summary>
/// 合作伙伴详情
/// </summary>
public class PartnerGetOutputDto : PartnerGetListOutputDto
{
    public DateTime? LastModificationTime { get; set; }
}