using Microsoft.AspNetCore.Mvc;
using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService;
using YD_WeChatApplet.Api;
using YD_WeChatApplet.Api.Entitys;
using YD_WeChatApplet.Commons;
using YD_WeChatApplet.Commons.Dto.HomeWork;
using YD_WeChatApplet.Commons.Dto.Patriarch;
using YD_WeChatApplet.Commons.Dto.Resource;
using YD_WeChatApplet.Commons.Dto.School;
namespace YD_WeChatApplet.Services
{
///
/// 用户偏好
///
public interface IUserPreferenceService
{
///
/// 新建偏好
///
///
///
Task AddPreference(AddPreferenceDto dto);
///
/// 获取个人偏好
///
///
Task GetPreferences();
///
/// 获取背景音乐列表
///
///
Task> GetBackgroundMusics();
///
/// 设置偏好
///
///
///
Task SetPreferences(SetPreferenceDto dto);
}
}