main
|
Last change
on this file since e294f7d was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added files
|
-
Property mode
set to
100644
|
|
File size:
795 bytes
|
| Line | |
|---|
| 1 | using ChapterX.Domain.Shared;
|
|---|
| 2 | using System;
|
|---|
| 3 | using System.Collections.Generic;
|
|---|
| 4 | using System.Linq;
|
|---|
| 5 | using System.Text;
|
|---|
| 6 | using System.Threading.Tasks;
|
|---|
| 7 |
|
|---|
| 8 | namespace 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.