ISessionAppService.cs 296 B

1234567891011
  1. using System.Threading.Tasks;
  2. using Abp.Application.Services;
  3. using WeApp.BaseSystem.Sessions.Dto;
  4. namespace WeApp.BaseSystem.Sessions
  5. {
  6. public interface ISessionAppService : IApplicationService
  7. {
  8. Task<GetCurrentLoginInformationsOutput> GetCurrentLoginInformations();
  9. }
  10. }