AdminPanel/Netina.AdminPanel.PWA/Services/RestServices/IDashboardApiRest.cs

7 lines
221 B
C#
Raw Normal View History

2024-04-17 16:19:43 +03:30
namespace Netina.AdminPanel.PWA.Services.RestServices;
public interface IDashboardApiRest
{
[Get("/home")]
public Task<HomeDashboardDto> GetHomeDashboardAsync([Header("Authorization")] string authorization);
}