source: iknow-api/Models/Documents.cs@ 2e17229

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

Refactor model properties for consistency and clarity

  • Property mode set to 100644
File size: 289 bytes
Line 
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.