main
|
Last change
on this file since 7fbb91c was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added files
|
-
Property mode
set to
100644
|
|
File size:
452 bytes
|
| Rev | Line | |
|---|
| [877c13c] | 1 | using System.Net.Mime;
|
|---|
| 2 |
|
|---|
| 3 | namespace 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.