Waste/Waste.Application/AccountInfo/IAccountService.cs

11 lines
192 B
C#
Raw Permalink Normal View History

2021-05-27 16:58:40 +08:00
using Nirvana.Common;
2021-04-30 14:52:42 +08:00
using System.Threading.Tasks;
namespace Waste.Application
{
public interface IAccountService
{
2021-05-27 16:58:40 +08:00
Task<ResultInfo> LoginAsync(LoginModel model);
2021-04-30 14:52:42 +08:00
}
}