namespace Nuuru.Server.Models.Booru { public class CommentMention { public int CommentId { get; set; } public Comment Comment { get; set; } = null!; public Guid MentionedUserId { get; set; } public ApplicationUser MentionedUser { get; set; } = null!; } }