11 lines
192 B
C#
11 lines
192 B
C#
|
|
using Nirvana.Common;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Waste.Application
|
|||
|
|
{
|
|||
|
|
public interface IAccountService
|
|||
|
|
{
|
|||
|
|
Task<ResultInfo> LoginAsync(LoginModel model);
|
|||
|
|
}
|
|||
|
|
}
|