GroupGetOutputDto.cs 511 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Group;

/// <summary>
/// 组织详情
/// </summary>
public class GroupGetOutputDto
{
    public string Id { get; set; } = string.Empty;

    public string GroupName { get; set; } = string.Empty;

    public string PartnerId { get; set; } = string.Empty;

    public string PartnerName { get; set; } = string.Empty;

    public bool State { get; set; }

    public DateTime CreationTime { get; set; }

    public DateTime? LastModificationTime { get; set; }
}