feat(guild): add Guild aggregate schema + migration
This commit is contained in:
11
SVSim.Database/Entities/Guild/GuildJoinRequest.cs
Normal file
11
SVSim.Database/Entities/Guild/GuildJoinRequest.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace SVSim.Database.Entities.Guild;
|
||||
|
||||
public class GuildJoinRequest
|
||||
{
|
||||
public int GuildId { get; set; }
|
||||
public long ViewerId { get; set; }
|
||||
public GuildJoinRequestStatus 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