using LiveForum.Model.Dto.Others; namespace LiveForum.IService.Others { /// /// 防沉迷校验服务接口 /// public interface IAntiAddictionService { /// /// 检查当前时间是否处于指定操作类型的防沉迷时段内 /// /// "Post" | "Reply" | "Flower" /// true = 在防沉迷时段内(应拒绝操作) Task IsRestrictedAsync(string actionType); /// /// 获取所有防沉迷规则(供 GetAppConfig 使用) /// Task> GetAllRulesAsync(); } }