Changeset e882b92 for ChapterX.API/DTOs/StoryDto.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.API/DTOs/StoryDto.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.API/DTOs/StoryDto.cs
ra6e33d1 re882b92 9 9 public int Id { get; set; } 10 10 public bool MatureContent { get; set; } 11 public string Title { get; set; } = string.Empty; 11 12 public string ShortDescription { get; set; } = string.Empty; 12 13 public string? Image { get; set; } 13 14 public string Content { get; set; } = string.Empty; 15 public string Status { get; set; } = "draft"; 14 16 public DateTime CreatedAt { get; set; } 15 17 public DateTime UpdatedAt { get; set; } … … 19 21 // Navigation 20 22 public WriterDto Writer { get; set; } = null!; 21 public ICollection<StatusDto> Statuses { get; set; } = [];22 23 public ICollection<ChapterDto> Chapters { get; set; } = []; 23 24 public ICollection<HasGenreDto> HasGenres { get; set; } = []; … … 26 27 public ICollection<CollaborationDto> Collaborations { get; set; } = []; 27 28 public ICollection<AISuggestionDto> AISuggestions { get; set; } = []; 28 public ICollection<NotifyDto> Notifies { get; set; } = [];29 29 public ICollection<ReadingListItemsDto> ReadingListItems { get; set; } = []; 30 30 public ICollection<NeedApprovalDto> NeedApprovals { get; set; } = [];
Note:
See TracChangeset
for help on using the changeset viewer.
