source: iknow-api/Models/Documents.cs@ a92a2a4

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

ADDEED ALL MODESL :)

  • Property mode set to 100644
File size: 289 bytes
RevLine 
[a92a2a4]1namespace iknow_api.Models
2{
3 public class Documents
4 {
5 public int Id { get; set; }
6 public string? name { get; set; }
7 public string? body { get; set; }
8 public int cost { get; set; }
9 public ICollection<UserDocuments>? User { get; set; }
10 }
11}
Note: See TracBrowser for help on using the repository browser.