10 lines
No EOL
323 B
C#
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!;
|
|
} |