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:
453 bytes
|
| Rev | Line | |
|---|
| [877c13c] | 1 | namespace ChapterX.API.DTOs
|
|---|
| 2 | {
|
|---|
| 3 | public class NotificationDto
|
|---|
| 4 | {
|
|---|
| 5 | public int Id { get; set; }
|
|---|
| 6 | public string Content { get; set; } = string.Empty;
|
|---|
| [e882b92] | 7 | public string ContentType { get; set; } = string.Empty;
|
|---|
| [877c13c] | 8 | public bool IsRead { get; set; }
|
|---|
| [e882b92] | 9 | public string? Link { get; set; }
|
|---|
| 10 | public int UserId { get; set; }
|
|---|
| 11 | public int? StoryId { get; set; }
|
|---|
| [877c13c] | 12 | public DateTime CreatedAt { get; set; }
|
|---|
| 13 | }
|
|---|
| 14 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.