Changeset e882b92 for ChapterX.Domain/DTOs/AISuggestionDto.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.Domain/DTOs/AISuggestionDto.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Domain/DTOs/AISuggestionDto.cs
ra6e33d1 re882b92 6 6 public string OriginalText { get; set; } = string.Empty; 7 7 public string SuggestedText { get; set; } = string.Empty; 8 public string SuggestionType { get; set; } = string.Empty; 8 9 public bool Accepted { get; set; } 9 10 public DateTime CreatedAt { get; set; } … … 15 16 // Navigation 16 17 public StoryDto Story { get; set; } = null!; 17 public ICollection<SuggestionTypeDto> SuggestionTypes { get; set; } = [];18 18 public ICollection<NeedApprovalDto> NeedApprovals { get; set; } = []; 19 19 }
Note:
See TracChangeset
for help on using the changeset viewer.
