Files
rootdarkarchon c98e2b2dd6 Switch Authentication to asynchronous streaming calls (#16)
* 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>
2022-10-13 16:55:23 +02:00

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; }
}