namespace Foxnouns.Backend.Database.Models; public class Member : BaseModel { public required string Name { get; set; } public string? DisplayName { get; set; } public string? Bio { get; set; } public string? Avatar { get; set; } public string[] Links { get; set; } = []; public bool Unlisted { get; set; } public List Names { get; set; } = []; public List Pronouns { get; set; } = []; public List Fields { get; set; } = []; public Snowflake UserId { get; init; } public User User { get; init; } = null!; }