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

Last change on this file since a12988e was 2d64b2e, checked in by imbrsk <boris696boris@…>, 10 months ago

Refactor model properties for consistency and clarity

  • 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; }
[2d64b2e]6 public string? Name { get; set; }
7 public string? Body { get; set; }
8 public int Cost { get; set; }
[a92a2a4]9 public ICollection<UserDocuments>? User { get; set; }
10 }
11}
Note: See TracBrowser for help on using the repository browser.