* 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>
13 lines
353 B
C#
13 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; }
|
|
}
|