Foxchat.NET/Foxchat.Identity/Database/Models/GuildAccount.cs
2024-05-14 03:51:31 +02:00

10 lines
No EOL
323 B
C#

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!;
}