Files
TechHelper/TechHelper.Server/Services/IUserSerivces.cs
SpecialX a21ca80782 1
2025-06-27 19:03:10 +08:00

11 lines
218 B
C#

using Entities.Contracts;
using TechHelper.Services;
namespace TechHelper.Server.Services
{
public interface IUserSerivces : IBaseService<User, Guid>
{
Task<ApiResponse> GetStudentDetailInfo(Guid userId);
}
}