Changeset e882b92 for ChapterX.API/DTOs/NotificationDto.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.API/DTOs/NotificationDto.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.API/DTOs/NotificationDto.cs
ra6e33d1 re882b92 7 7 public int Id { get; set; } 8 8 public string Content { get; set; } = string.Empty; 9 public string ContentType { get; set; } = string.Empty; 9 10 public bool IsRead { get; set; } 11 public string? Link { get; set; } 12 public int UserId { get; set; } 13 public int? StoryId { get; set; } 10 14 public DateTime CreatedAt { get; set; } 11 12 // Navigation13 public ICollection<ContentType> ContentTypes { get; set; } = [];14 public ICollection<NotifyDto> Notifies { get; set; } = [];15 15 } 16 16 }
Note:
See TracChangeset
for help on using the changeset viewer.
