12 lines
206 B
C#
12 lines
206 B
C#
using Emergence.models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Emergence.services.Interface
|
|
{
|
|
public interface IUserService : IService<UserModel>
|
|
{
|
|
}
|
|
}
|