source: KernelRecordsMVC.Domain/Models/Admin.cs

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

Initial commit

  • Property mode set to 100644
File size: 377 bytes
RevLine 
[08aefc6]1using KernelRecordsMVC.Domain.Enums;
2
3namespace KernelRecordsMVC.Models;
4
5public class Admin
6{
7 public long UserId { get; set; }
8
9 public AdminType Type { get; set; }
10
11 public decimal DiscountPercentage { get; set; }
12
13 public User User { get; set; } = null!;
14
15 public ICollection<Modification> Modifications { get; set; }
16 = new List<Modification>();
17}
Note: See TracBrowser for help on using the repository browser.