 c98e2b2dd6
			
		
	
	c98e2b2dd6
	
	
	
		
			
			* add base grpc service and swap auth service to streaming * remove Authorize from hub itself * remove unused usings * heave files server to net 7, add exception handling in grpc auth stream Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MareSynchronosShared.Models;
 | |
| 
 | |
| public class GroupBan
 | |
| {
 | |
|     public Group Group { get; set; }
 | |
|     public string GroupGID { get; set; }
 | |
|     public User BannedUser { get; set; }
 | |
|     public string BannedUserUID { get; set; }
 | |
|     public User BannedBy { get; set; }
 | |
|     public string BannedByUID { get; set; }
 | |
|     public DateTime BannedOn { get; set; }
 | |
|     public string BannedReason { get; set; }
 | |
| }
 |