feat(guild): add Guild aggregate schema + migration
This commit is contained in:
10
SVSim.Database/Entities/Guild/GuildMember.cs
Normal file
10
SVSim.Database/Entities/Guild/GuildMember.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace SVSim.Database.Entities.Guild;
|
||||
|
||||
public class GuildMember
|
||||
{
|
||||
public int GuildId { get; set; }
|
||||
public long ViewerId { get; set; }
|
||||
public GuildRole Role { get; set; }
|
||||
public DateTime JoinedAt { get; set; }
|
||||
public Guild Guild { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user