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