feat(guild): add Guild aggregate schema + migration
This commit is contained in:
12
SVSim.Database/Entities/Guild/GuildInvite.cs
Normal file
12
SVSim.Database/Entities/Guild/GuildInvite.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace SVSim.Database.Entities.Guild;
|
||||
|
||||
public class GuildInvite
|
||||
{
|
||||
public int GuildId { get; set; }
|
||||
public long InviteeViewerId { get; set; }
|
||||
public long InviterViewerId { get; set; }
|
||||
public GuildInviteStatus Status { get; set; }
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime? RespondedAt { get; set; }
|
||||
public Guild Guild { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user