 ca16b08a2f
			
		
	
	ca16b08a2f
	
	
	
		
			
			* start with group permissions implementation * some minor refactoring * adjust hub for api changes * fixes and database migration * fixes sending online/offline message to clients stuff * remove admin stuff from server * fixes get server permissions * send group pair info to client on joining a group * send online only on sending connection dto --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			445 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			445 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; }
 | |
|     public bool DisableSounds { get; set; }
 | |
|     public bool DisableAnimations { get; set; }
 | |
| }
 |