Changeset e882b92 for ChapterX.Domain/Entities/Notification.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.Domain/Entities/Notification.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Domain/Entities/Notification.cs
ra6e33d1 re882b92 12 12 public int Id { get; set; } 13 13 public string Content { get; set; } = string.Empty; 14 public string ContentType { get; set; } = string.Empty; 14 15 public bool IsRead { get; set; } 16 public string? Link { get; set; } 15 17 public DateTime CreatedAt { get; set; } 16 public int? RecipientUserId { get; set; }17 public string? Type { get; set; }18 public string? Link { get; set; }19 18 20 public ICollection<ContentType> ContentTypes { get; set; } = []; 21 public ICollection<Notify> Notifies { get; set; } = []; 22 19 public int UserId { get; set; } 20 public int? StoryId { get; set; } 21 public User User { get; set; } = null!; 22 public Story? Story { get; set; } 23 23 } 24 24 }
Note:
See TracChangeset
for help on using the changeset viewer.
