main
|
Last change
on this file since 73b69b2 was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago |
|
Added files
|
-
Property mode
set to
100644
|
|
File size:
504 bytes
|
| Rev | Line | |
|---|
| [877c13c] | 1 | using System.Data;
|
|---|
| 2 |
|
|---|
| 3 | namespace ChapterX.API.DTOs
|
|---|
| 4 | {
|
|---|
| 5 | public class CollaborationDto
|
|---|
| 6 | {
|
|---|
| 7 | public int UserId { get; set; }
|
|---|
| 8 | public int StoryId { get; set; }
|
|---|
| 9 | public DateTime CreatedAt { get; set; }
|
|---|
| 10 |
|
|---|
| 11 | // Navigation
|
|---|
| 12 | public UserDto User { get; set; } = null!;
|
|---|
| 13 | public StoryDto Story { get; set; } = null!;
|
|---|
| 14 | public ICollection<RolesDto> Roles { get; set; } = [];
|
|---|
| 15 | public ICollection<PermissionLevelDto> PermissionLevels { get; set; } = [];
|
|---|
| 16 | }
|
|---|
| 17 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.