Files
SVSimServer/SVSim.Database/Entities/Story/ViewerStoryBranchUnlock.cs
gamer147 5e7a65fe5a Story
2026-05-25 14:36:12 -04:00

10 lines
296 B
C#

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; }
}