12 lines
278 B
C#
12 lines
278 B
C#
using System.Threading.Tasks;
|
|
using Abp.Application.Services;
|
|
using BCS.BMC.Sessions.Dto;
|
|
|
|
namespace BCS.BMC.Sessions
|
|
{
|
|
public interface ISessionAppService : IApplicationService
|
|
{
|
|
Task<GetCurrentLoginInformationsOutput> GetCurrentLoginInformations();
|
|
}
|
|
}
|