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