10 lines
155 B
C#
10 lines
155 B
C#
using WorkStation.Server.Context.Entity;
|
|
|
|
namespace WorkStation.Server.Services
|
|
{
|
|
public interface IUserService : IBaseService<User>
|
|
{
|
|
|
|
}
|
|
}
|