♻️ Move the chat part of the Sphere service to the Messager service

This commit is contained in:
2026-01-01 22:09:08 +08:00
parent c503083df7
commit ab37bbc7b0
50 changed files with 3042 additions and 611 deletions

View File

@@ -81,8 +81,8 @@ public class SnPermissionGroup : ModelBase
public Guid Id { get; set; } = Guid.NewGuid();
[MaxLength(1024)] public string Key { get; set; } = null!;
public ICollection<SnPermissionNode> Nodes { get; set; } = [];
[JsonIgnore] public ICollection<SnPermissionGroupMember> Members { get; set; } = [];
public List<SnPermissionNode> Nodes { get; set; } = [];
[JsonIgnore] public List<SnPermissionGroupMember> Members { get; set; } = [];
}
public class SnPermissionGroupMember : ModelBase