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