Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/Pub/IGameBadgeService.cs
2026-07-13 14:28:33 +08:00

18 lines
564 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Application.Domain.Services
{
public interface IGameBadgeService
{
#region unit_user_badge
Task<int> GetUserShowBadgeCount(string userId);
Task<int> GetUserShowBadgeOnCount(string userId);
Task<bool> UpdateUserBadgeShow(string ubId, int show);
Task<unit_user_badge> GetUserBadegInfo(string ubId);
Task<List<unit_user_badge>> GetUserBadgeList(string userId, int page, int limit, RefAsync<int> total);
#endregion
}
}