sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Intranet/IIntranetAppService.cs

10 lines
232 B
C#
Raw Normal View History

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