Changeset e882b92 for ChapterX.API/DTOs/CollaborationDto.cs
- Timestamp:
- 08/24/26 20:57:09 (13 days ago)
- Branches:
- main
- Parents:
- a6e33d1
- File:
-
- 1 edited
-
ChapterX.API/DTOs/CollaborationDto.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.API/DTOs/CollaborationDto.cs
ra6e33d1 re882b92 7 7 public int UserId { get; set; } 8 8 public int StoryId { get; set; } 9 public string Role { get; set; } = string.Empty; 10 public int? PermissionLevel { get; set; } 9 11 public DateTime CreatedAt { get; set; } 10 12 … … 12 14 public UserDto User { get; set; } = null!; 13 15 public StoryDto Story { get; set; } = null!; 14 public ICollection<RolesDto> Roles { get; set; } = [];15 public ICollection<PermissionLevelDto> PermissionLevels { get; set; } = [];16 16 } 17 17 }
Note:
See TracChangeset
for help on using the changeset viewer.
