source: iknow-api/Models/UserDocuments.cs@ 4b35197

Last change on this file since 4b35197 was a92a2a4, checked in by imbrsk <boris696boris@…>, 11 months ago

ADDEED ALL MODESL :)

  • Property mode set to 100644
File size: 245 bytes
Line 
1namespace iknow_api.Models
2{
3 public class UserDocuments
4 {
5 public int UserId { get; set; }
6 public int DocumentId { get; set; }
7 public User? User{ get; set; }
8 public Documents? Documents{ get; set; }
9 }
10}
Note: See TracBrowser for help on using the repository browser.