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