mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
* add group moderation and banning functionality to api * set moderator to false on group migration * send IsModerator in addition on group join Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
12 lines
353 B
C#
12 lines
353 B
C#
namespace MareSynchronosShared.Models;
|
|
|
|
public class GroupPair
|
|
{
|
|
public string GroupGID { get; set; }
|
|
public Group Group { get; set; }
|
|
public string GroupUserUID { get; set; }
|
|
public User GroupUser { get; set; }
|
|
public bool IsPaused { get; set; }
|
|
public bool IsPinned { get; set; }
|
|
public bool IsModerator { get; set; }
|
|
}
|