fix:修复已知问题

This commit is contained in:
2026-02-09 15:46:40 +08:00
parent 10f79fb537
commit dc6ecf224d
29 changed files with 1530 additions and 37 deletions
+5
View File
@@ -50,6 +50,11 @@ public partial class Group
/// 群头像
/// </summary>
public string Avatar { get; set; } = null!;
public long MaxSequenceId { get; set; } = 0;
public string LastMessage { get; set; } = string.Empty;
public string LastSenderName { get; set; } = string.Empty;
public DateTimeOffset LastUpdateTime { get; set; } = DateTime.UtcNow;
public virtual ICollection<GroupInvite> GroupInvites { get; set; } = new List<GroupInvite>();