using Yi.Framework.AiHub.Application.Contracts.Dtos.Recharge;
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
public interface IRechargeService
{
///
/// 移除用户vip及角色
///
Task RemoveVipRoleByExpireAsync();
///
/// 给用户充值VIP
///
/// 充值输入参数
///
Task RechargeVipAsync(RechargeCreateInput input);
}