main
|
Last change
on this file was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added files
|
-
Property mode
set to
100644
|
|
File size:
281 bytes
|
| Rev | Line | |
|---|
| [877c13c] | 1 | using ChapterX.Domain.Shared;
|
|---|
| 2 |
|
|---|
| 3 | namespace ChapterX.Domain.Entities
|
|---|
| 4 | {
|
|---|
| 5 | public class Writer : IEntity
|
|---|
| 6 | {
|
|---|
| 7 | public int Id { get; set; } // maps to user_id
|
|---|
| 8 | public User User { get; set; } = null!;
|
|---|
| 9 | public ICollection<Story> Stories { get; set; } = [];
|
|---|
| 10 | }
|
|---|
| 11 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.