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