10 lines
232 B
C#
10 lines
232 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.Application.Services;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Platform.Intranet;
|
|||
|
|
|
|||
|
|
public interface IIntranetAppService : IApplicationService
|
|||
|
|
{
|
|||
|
|
Task<IntranetDashboardDto> GetIntranetDashboardAsync();
|
|||
|
|
}
|