feat(backend): add short IDs to models

This commit is contained in:
sam 2024-09-26 15:08:08 +02:00
parent 6ea8861da2
commit df93f28273
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
9 changed files with 1101 additions and 3 deletions

View file

@ -3,6 +3,7 @@ namespace Foxnouns.Backend.Database.Models;
public class Member : BaseModel
{
public required string Name { get; set; }
public string Sid { get; set; } = string.Empty;
public string? DisplayName { get; set; }
public string? Bio { get; set; }
public string? Avatar { get; set; }