source: ChapterX.API/DTOs/CollaborationDto.cs@ a6e33d1

main
Last change on this file since a6e33d1 was 877c13c, checked in by kikisrbinoska <srbinoskakristina07@…>, 4 months ago

Added files

  • Property mode set to 100644
File size: 504 bytes
Line 
1using System.Data;
2
3namespace 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.