using System.ComponentModel.DataAnnotations.Schema; using FictionArchive.Service.NovelService.Models.Localization; using FictionArchive.Service.Shared.Models; namespace FictionArchive.Service.NovelService.Models.Novels; [Table("Volume")] public class Volume : BaseEntity { /// /// Signed int to allow special ordering like -1 for "Author Notes" at top. /// public int Order { get; set; } public LocalizationKey Name { get; set; } public List Chapters { get; set; } #region Navigation Properties public Novel Novel { get; set; } #endregion }