namespace ZhiYi.Core.Application.Services { /// /// 分享管理 /// public interface ISharedAppService { /// /// 创建分享 /// /// /// Task> CreateAsync(SharedCreationDto input); /// /// 获取个人分享列表 /// /// 分享账号ID /// Task>> GetListAsync(long id); /// /// 使用分享码 /// /// /// Task UseShared(UseSharedCodeDto input); /// /// 批量删除分享码 /// /// /// Task DeleteBatchAsync(SharedDeleteDto input); } }