Story
This commit is contained in:
13
SVSim.Database/Entities/Story/ViewerStoryProgress.cs
Normal file
13
SVSim.Database/Entities/Story/ViewerStoryProgress.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user