9 lines
222 B
C#
9 lines
222 B
C#
|
|
namespace NetinaShop.AdminPanel.PWA.Services.RestServices;
|
|||
|
|
|
|||
|
|
public interface IUserRestApi
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
|
|||
|
|
[Put("")]
|
|||
|
|
Task UpdateUserAsync([Body]UserActionRequestDto request, [Header("Authorization")] string authorization);
|
|||
|
|
}
|