using ChapterX.Domain.DTOs; namespace ChapterX.API.DTOs { public class StoryDto { public int Id { get; set; } public bool MatureContent { get; set; } public string ShortDescription { get; set; } = string.Empty; public string? Image { get; set; } public string Content { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } // FK public int UserId { get; set; } // Navigation public WriterDto Writer { get; set; } = null!; public ICollection Statuses { get; set; } = []; public ICollection Chapters { get; set; } = []; public ICollection HasGenres { get; set; } = []; public ICollection Likes { get; set; } = []; public ICollection Comments { get; set; } = []; public ICollection Collaborations { get; set; } = []; public ICollection AISuggestions { get; set; } = []; public ICollection Notifies { get; set; } = []; public ICollection ReadingListItems { get; set; } = []; public ICollection NeedApprovals { get; set; } = []; } }