* add jwt expiry * bump api version * start rework permissions * ok so in theory this compiles * update api * update api * update api * update api once more * oh apiii I hate submodules * blabla * we only live to suffer * stop reading my commit messages * nothing to see here move along * update nuget * some rework --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
11 lines
431 B
C#
11 lines
431 B
C#
using MareSynchronos.API.Data;
|
|
using MareSynchronos.API.Data.Enum;
|
|
using MessagePack;
|
|
|
|
namespace MareSynchronos.API.Dto.User;
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record UserPermissionsDto(UserData User, UserPermissions Permissions) : UserDto(User);
|
|
|
|
[MessagePackObject(keyAsPropertyName: true)]
|
|
public record UserIndividualPairStatusDto(UserData User, IndividualPairStatus IndividualPairStatus) : UserDto(User); |