source: ChapterX.Domain/DTOs/NotificationDto.cs@ 7fbb91c

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

Added files

  • Property mode set to 100644
File size: 431 bytes
Line 
1namespace ChapterX.API.DTOs
2{
3 public class NotificationDto
4 {
5 public int Id { get; set; }
6 public string Content { get; set; } = string.Empty;
7 public bool IsRead { get; set; }
8 public DateTime CreatedAt { get; set; }
9
10 // Navigation
11 public ICollection<ContentTypeDto> ContentTypes { get; set; } = [];
12 public ICollection<NotifyDto> Notifies { get; set; } = [];
13 }
14}
Note: See TracBrowser for help on using the repository browser.