Foxchat.NET/Foxchat.Identity/Database/Models/GuildAccount.cs

10 lines
323 B
C#
Raw Permalink Normal View History

2024-05-11 15:26:47 +02:00
namespace Foxchat.Identity.Database.Models;
public class GuildAccount
{
public Ulid ChatInstanceId { get; init; }
public ChatInstance ChatInstance { get; init; } = null!;
public string GuildId { get; init; } = null!;
public Ulid AccountId { get; init; }
public Account Account { get; init; } = null!;
}