preparation for admin actions

This commit is contained in:
Stanley Dimant
2022-06-29 23:02:18 +02:00
parent 906f719879
commit 3c2fac69c3
2 changed files with 34 additions and 11 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MareSynchronos.API
{
public class UserDto
{
public bool IsAdmin { get; set; }
public string UID { get; set; }
}
}