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

14 lines
407 B
C#

namespace SVSim.Database.Entities.Story;
// Composite PK (ViewerId, StoryId) configured via fluent API in SVSimDbContext.
public class ViewerStoryProgress
{
public long ViewerId { get; set; }
public int StoryId { get; set; }
public bool IsFinish { get; set; }
public bool IsSkipped { get; set; }
public DateTime? FinishedAt { get; set; }
public DateTime? SkippedAt { get; set; }
}