source: ChapterX.API/DTOs/AdminDto.cs@ e882b92

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: 236 bytes
RevLine 
[877c13c]1namespace ChapterX.API.DTOs
2{
3 public class AdminDto
4 {
5 public int UserId { get; set; }
[e882b92]6 public DateTime AssignedAt { get; set; }
[877c13c]7
8 // Navigation
9 public UserDto User { get; set; } = null!;
10 }
11}
Note: See TracBrowser for help on using the repository browser.