namespace Netina.AdminPanel.PWA.Services.RestServices; public interface IDashboardApiRest { [Get("/home")] public Task GetHomeDashboardAsync([Header("Authorization")] string authorization); [Get("/orders")] public Task GetOrdersDashboardAsync([Header("Authorization")] string authorization); }