7 lines
225 B
C#
7 lines
225 B
C#
|
|
namespace NetinaShop.AdminPanel.PWA.Services.RestServices;
|
|||
|
|
|
|||
|
|
public interface IDashboardApiRest
|
|||
|
|
{
|
|||
|
|
[Get("/home")]
|
|||
|
|
public Task<HomeDashboardDto> GetHomeDashboardAsync([Header("Authorization")] string authorization);
|
|||
|
|
}
|