source: ChapterX.API/DTOs/NotificationDto.cs@ b373fea

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

Added files

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