source: KernelRecordsMVC.Domain/Models/Modification.cs@ fa0fbaf

main
Last change on this file since fa0fbaf was 08aefc6, checked in by mmilevski <markomilevski3@…>, 4 weeks ago

Initial commit

  • Property mode set to 100644
File size: 514 bytes
Line 
1using KernelRecordsMVC.Domain.Enums;
2
3namespace KernelRecordsMVC.Models;
4
5public class Modification
6{
7 public long ModificationId { get; set; }
8
9 public long AdminId { get; set; }
10
11 public DateTime DateModified { get; set; }
12
13 public ModificationType TypeOfModification { get; set; }
14
15 public decimal? Discount { get; set; }
16
17 public Admin Admin { get; set; } = null!;
18
19 public ICollection<ModificationProduct> ModificationProducts { get; set; }
20 = new List<ModificationProduct>();
21}
Note: See TracBrowser for help on using the repository browser.