1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.Core.Dtos;
- using TEAMModelOS.SDK.Module.AzureTable.Interfaces;
- namespace TEAMModelOS.Service.Core.Interfaces
- {
- public interface ILoginInfoService : IBusinessService, IBaseService
- {
- Task<LoginResult> CheckLoginAsync(TicketInfo loginInfo);
- }
- }
|