🐛 Fix publisher members has no account info

This commit is contained in:
2025-07-19 12:10:43 +08:00
parent 4398984551
commit 921a10f7ab
3 changed files with 27 additions and 4 deletions

View File

@@ -63,6 +63,7 @@ public class PublisherMember : ModelBase
public Guid PublisherId { get; set; }
[JsonIgnore] public Publisher Publisher { get; set; } = null!;
public Guid AccountId { get; set; }
[NotMapped] public Account? Account { get; set; }
public PublisherMemberRole Role { get; set; } = PublisherMemberRole.Viewer;
public Instant? JoinedAt { get; set; }