GroupCreateInputVo.cs
404 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Group;
/// <summary>
/// 新建组织入参
/// </summary>
public class GroupCreateInputVo
{
public string GroupName { get; set; } = string.Empty;
/// <summary>
/// 指派到的合作伙伴 Id(Assign to Partner)
/// </summary>
public string PartnerId { get; set; } = string.Empty;
public bool State { get; set; } = true;
}