This commit is contained in:
sam 2024-05-27 15:53:54 +02:00
commit f4c0a40259
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
27 changed files with 2188 additions and 0 deletions

View file

@ -0,0 +1,18 @@
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<FieldEntry> Names { get; set; } = [];
public List<Pronoun> Pronouns { get; set; } = [];
public List<Field> Fields { get; set; } = [];
public Snowflake UserId { get; init; }
public User User { get; init; } = null!;
}