14 lines
420 B
C#
14 lines
420 B
C#
|
namespace Foxchat.Chat.Database.Models;
|
||
|
|
||
|
public class User : BaseModel
|
||
|
{
|
||
|
public Ulid InstanceId { get; init; }
|
||
|
public IdentityInstance Instance { get; init; } = null!;
|
||
|
public string RemoteUserId { get; init; } = null!;
|
||
|
public string Username { get; init; } = null!;
|
||
|
|
||
|
public string? Avatar { get; set; }
|
||
|
|
||
|
public List<Guild> Guilds { get; } = [];
|
||
|
public List<Guild> OwnedGuilds { get; } = [];
|
||
|
}
|