source: ChapterX.Domain/Entities/Notification.cs@ 877c13c

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

Added files

  • Property mode set to 100644
File size: 565 bytes
RevLine 
[877c13c]1using ChapterX.Domain.Shared;
2using System;
3using System.Collections.Generic;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7
8namespace ChapterX.Domain.Entities
9{
10 public class Notification : IEntity
11 {
12 public int Id { get; set; }
13 public string Content { get; set; } = string.Empty;
14 public bool IsRead { get; set; }
15 public DateTime CreatedAt { get; set; }
16
17 public ICollection<ContentType> ContentTypes { get; set; } = [];
18 public ICollection<Notify> Notifies { get; set; } = [];
19
20 }
21}
Note: See TracBrowser for help on using the repository browser.