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

10 lines
253 B
C#

namespace SVSim.Database.Entities.Story;
[Microsoft.EntityFrameworkCore.Owned]
public class StorySubChapter
{
public int SubChapterId { get; set; }
public int SubChapterStoryId { get; set; }
public bool IsMaintenanceChapter { get; set; }
}