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

9 lines
350 B
C#
Raw Permalink 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);
2024-05-16 13:52:55 +03:30
[Get("/orders")]
public Task<OrderDashboardDto> GetOrdersDashboardAsync([Header("Authorization")] string authorization);
}