mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-08 10:16:37 +08:00
9 lines
212 B
C#
9 lines
212 B
C#
|
|
namespace Yi.Framework.AiHub.Application.Contracts.IServices;
|
|||
|
|
|
|||
|
|
public interface IRechargeService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 移除用户vip及角色
|
|||
|
|
/// </summary>
|
|||
|
|
Task RemoveVipRoleByExpireAsync();
|
|||
|
|
}
|