source: ChapterX.API/DTOs/AISuggestionDto.cs@ dc383dd

main
Last change on this file since dc383dd was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added files

  • Property mode set to 100644
File size: 679 bytes
RevLine 
[877c13c]1namespace ChapterX.API.DTOs
2{
3 public class AISuggestionDto
4 {
5 public int Id { get; set; }
6 public string OriginalText { get; set; } = string.Empty;
7 public string SuggestedText { get; set; } = string.Empty;
8 public bool Accepted { get; set; }
9 public DateTime CreatedAt { get; set; }
10 public DateTime? AppliedAt { get; set; }
11
12 // FK
13 public int StoryId { get; set; }
14
15 // Navigation
16 public StoryDto Story { get; set; } = null!;
17 public ICollection<SuggestionTypeDto> SuggestionTypes { get; set; } = [];
18 public ICollection<NeedApprovalDto> NeedApprovals { get; set; } = [];
19 }
20}
Note: See TracBrowser for help on using the repository browser.