source: ChapterX.Domain/Entities/AISuggestion.cs@ 73b69b2

main
Last change on this file since 73b69b2 was b62cefc, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added frontend and imporoved AI Suggestions service

  • Property mode set to 100644
File size: 796 bytes
Line 
1using ChapterX.Domain.Shared;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace ChapterX.Domain.Entities
9{
10 public class AISuggestion : IEntity
11 {
12 public int Id { get; set; }
13 public string OriginalText { get; set; } = string.Empty;
14 public string SuggestedText { get; set; } = string.Empty;
15 public bool? Accepted { get; set; }
16 public DateTime CreatedAt { get; set; }
17 public DateTime? AppliedAt { get; set; }
18
19 public int StoryId { get; set; }
20 public Story Story { get; set; } = null!;
21 public ICollection<SuggestionType> SuggestionTypes { get; set; } = [];
22 public ICollection<NeedApproval> NeedApprovals { get; set; } = [];
23
24 }
25}
Note: See TracBrowser for help on using the repository browser.