mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-22 21:59:17 +01:00
add admin related things
This commit is contained in:
parent
dd1a6e910e
commit
3e00bc4efd
14 changed files with 651 additions and 6 deletions
16
MareSynchronosServer/MareSynchronos.API/OnlineUserDto.cs
Normal file
16
MareSynchronosServer/MareSynchronos.API/OnlineUserDto.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MareSynchronos.API
|
||||
{
|
||||
public class OnlineUserDto
|
||||
{
|
||||
public string UID { get; set; }
|
||||
public string CharacterNameHash { get; set; }
|
||||
public bool IsModerator { get; set; }
|
||||
public bool IsAdmin { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue