feat(api): UserProfile

This commit is contained in:
Mikhail Trubnikov
2023-12-06 11:53:36 +10:00
parent 052312738e
commit b8e48859ae
7 changed files with 107 additions and 1 deletions

View File

@@ -125,6 +125,8 @@ namespace PARR.API.Contracts.V1
public const string getParam = "{id}";
}
#region User
public static class User
{
public const string GetAll = Base + "/users/";
@@ -151,6 +153,13 @@ namespace PARR.API.Contracts.V1
public const string GetAll = Base + "/roles/";
}
public static class UserProfile
{
public const string Get = Base + "/user-profile/";
}
#endregion
}
}

View File

@@ -0,0 +1,9 @@
using PARR.API.Authentication.Models;
namespace PARR.API.Contracts.V1.Responses
{
public class UserProfileResponse : UserCache
{
}
}