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

main
Last change on this file since e882b92 was e882b92, checked in by kikisrbinoska <srbinoskakristina07@…>, 13 days ago

Added corrected entitef from the ER diagram and changes for the logic to be coresponding to the ddl

  • Property mode set to 100644
File size: 477 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;
[e882b92]9 public string ContentType { get; set; } = string.Empty;
[877c13c]10 public bool IsRead { get; set; }
[e882b92]11 public string? Link { get; set; }
12 public int UserId { get; set; }
13 public int? StoryId { get; set; }
[877c13c]14 public DateTime CreatedAt { get; set; }
15 }
16}
Note: See TracBrowser for help on using the repository browser.