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:
299 bytes
|
| Line | |
|---|
| 1 | namespace KernelRecordsMVC.Models;
|
|---|
| 2 |
|
|---|
| 3 | public class Wishlist
|
|---|
| 4 | {
|
|---|
| 5 | public long WishlistId { get; set; }
|
|---|
| 6 |
|
|---|
| 7 | public long UserId { get; set; }
|
|---|
| 8 |
|
|---|
| 9 | public User User { get; set; } = null!;
|
|---|
| 10 |
|
|---|
| 11 | public ICollection<WishlistProduct> WishlistProducts { get; set; }
|
|---|
| 12 | = new List<WishlistProduct>();
|
|---|
| 13 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.