ILoginInfoService.cs 324 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Common.Dtos;
  6. namespace TEAMModelOS.Service.Common.Interfaces
  7. {
  8. public interface ILoginInfoService :IBusinessService
  9. {
  10. Task<LoginResult> CheckLoginAsync(TicketInfo loginInfo);
  11. }
  12. }