Story
This commit is contained in:
26
SVSim.Database/Entities/Story/StorySection.cs
Normal file
26
SVSim.Database/Entities/Story/StorySection.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace SVSim.Database.Entities.Story;
|
||||
|
||||
public class StorySection
|
||||
{
|
||||
[Key]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public int Id { get; set; }
|
||||
|
||||
public int? WorldId { get; set; }
|
||||
public StoryWorld? World { get; set; }
|
||||
|
||||
public StoryApiType StoryApiType { get; set; }
|
||||
public int OrderId { get; set; }
|
||||
public int AllStoryOrderId { get; set; }
|
||||
public string NameTextKey { get; set; } = string.Empty;
|
||||
public string ImageName { get; set; } = string.Empty;
|
||||
public bool IsLeaderSelect { get; set; }
|
||||
public int BackGroundId { get; set; }
|
||||
public int ChapterSelectType { get; set; }
|
||||
public int StoryTypeOverwrite { get; set; }
|
||||
public bool IsUnderMaintenance { get; set; }
|
||||
public bool IsPlayAnotherEndAppearanceAnimation { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user