feat(api): UserProfile
This commit is contained in:
@@ -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
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
9
PARR.API/Contracts/V1/Responses/UserProfileResponse.cs
Normal file
9
PARR.API/Contracts/V1/Responses/UserProfileResponse.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using PARR.API.Authentication.Models;
|
||||
|
||||
namespace PARR.API.Contracts.V1.Responses
|
||||
{
|
||||
public class UserProfileResponse : UserCache
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user