mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 15:37:23 +01:00
* 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>
13 lines
405 B
C#
13 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; }
|
|
}
|