mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 18:15:41 +00:00
7 lines
217 B
C#
7 lines
217 B
C#
namespace Spacebar.AdminApi.Models;
|
|
|
|
public class ForceJoinRequest {
|
|
public string? UserId { get; set; } = null!;
|
|
public bool MakeAdmin { get; set; } = false;
|
|
public bool MakeOwner { get; set; } = false;
|
|
} |