using System.Threading.Tasks; using Abp.Application.Services; using WeApp.BaseSystem.Sessions.Dto; namespace WeApp.BaseSystem.Sessions { public interface ISessionAppService : IApplicationService { Task GetCurrentLoginInformations(); } }