main
|
Last change
on this file since d2eccb3 was d2eccb3, checked in by mmilevski <markomilevski3@…>, 4 weeks ago |
|
Minor fixes.
|
-
Property mode
set to
100644
|
|
File size:
554 bytes
|
| Line | |
|---|
| 1 | namespace KernelRecordsMVC.Application.ViewModels;
|
|---|
| 2 |
|
|---|
| 3 | public class SaleItemViewModel
|
|---|
| 4 | {
|
|---|
| 5 | public long ProductId { get; set; }
|
|---|
| 6 |
|
|---|
| 7 | public long ReleaseId { get; set; }
|
|---|
| 8 |
|
|---|
| 9 | public string ReleaseTitle { get; set; } = null!;
|
|---|
| 10 |
|
|---|
| 11 | public string? CoverPhoto { get; set; }
|
|---|
| 12 |
|
|---|
| 13 | public string Format { get; set; } = null!;
|
|---|
| 14 |
|
|---|
| 15 | public decimal OriginalPrice { get; set; }
|
|---|
| 16 |
|
|---|
| 17 | public decimal SalePrice { get; set; }
|
|---|
| 18 |
|
|---|
| 19 | public decimal DiscountPercentage { get; set; }
|
|---|
| 20 |
|
|---|
| 21 | public long Stock { get; set; }
|
|---|
| 22 |
|
|---|
| 23 | public string ArtistName { get; set; } = null!;
|
|---|
| 24 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.