Files
WorkStation/WorkStation.Server/Services/IUserService.cs

10 lines
155 B
C#
Raw Permalink Normal View History

2025-07-07 18:41:36 +08:00
using WorkStation.Server.Context.Entity;
namespace WorkStation.Server.Services
{
public interface IUserService : IBaseService<User>
2025-07-07 18:41:36 +08:00
{
}
}