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

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