Changeset e882b92 for ChapterX.Domain/Entities/Story.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.Domain/Entities/Story.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Domain/Entities/Story.cs
ra6e33d1 re882b92 16 16 public string? Image { get; set; } 17 17 public string Content { get; set; } = string.Empty; 18 public string Status { get; set; } = "draft"; 18 19 public DateTime CreatedAt { get; set; } 19 20 public DateTime UpdatedAt { get; set; } … … 21 22 public int UserId { get; set; } 22 23 public Writer Writer { get; set; } = null!; 23 public ICollection<Status> Statuses { get; set; } = [];24 24 public ICollection<Chapter> Chapters { get; set; } = []; 25 25 public ICollection<HasGenre> HasGenres { get; set; } = []; … … 28 28 public ICollection<Collaboration> Collaborations { get; set; } = []; 29 29 public ICollection<AISuggestion> AISuggestions { get; set; } = []; 30 public ICollection<Notif y> Notifies { get; set; } = [];30 public ICollection<Notification> Notifications { get; set; } = []; 31 31 public ICollection<ReadingListItems> ReadingListItems { get; set; } = []; 32 32 public ICollection<NeedApproval> NeedApprovals { get; set; } = [];
Note:
See TracChangeset
for help on using the changeset viewer.
