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
|
| Line | |
|---|
| 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 string ContentType { get; set; } = string.Empty;
|
|---|
| 10 | public bool IsRead { get; set; }
|
|---|
| 11 | public string? Link { get; set; }
|
|---|
| 12 | public int UserId { get; set; }
|
|---|
| 13 | public int? StoryId { get; set; }
|
|---|
| 14 | public DateTime CreatedAt { get; set; }
|
|---|
| 15 | }
|
|---|
| 16 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.