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