ZhiYi/ZhiYi.Core.Application/Dtos/Shared/SharedCreationDto.cs

26 lines
628 B
C#

namespace ZhiYi.Core.Application.Dtos.Shared
{
public class SharedCreationDto
{
/// <summary>
/// 分享码类型 1次数 2过期时间 3指定人员ID
/// </summary>
public int Type { get; set; }
/// <summary>
/// 分享码对应类型的值
/// </summary>
public string Value { get; set; }
/// <summary>
/// 分组ID列表 id1,id2,id3,id4
/// </summary>
public string GroupIds { get; set; }
/// <summary>
/// 分享人员
/// </summary>
public long Shared_User { get; set; }
}
}