Story
This commit is contained in:
9
SVSim.Database/Entities/Story/ViewerStoryBranchUnlock.cs
Normal file
9
SVSim.Database/Entities/Story/ViewerStoryBranchUnlock.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace SVSim.Database.Entities.Story;
|
||||
|
||||
// Composite PK (ViewerId, StoryId) — StoryId here is the BRANCH CHILD that was unlocked.
|
||||
public class ViewerStoryBranchUnlock
|
||||
{
|
||||
public long ViewerId { get; set; }
|
||||
public int StoryId { get; set; }
|
||||
public DateTime UnlockedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user