namespace KernelRecordsMVC.Application.ViewModels; public class SaleItemViewModel { public long ProductId { get; set; } public long ReleaseId { get; set; } public string ReleaseTitle { get; set; } = null!; public string? CoverPhoto { get; set; } public string Format { get; set; } = null!; public decimal OriginalPrice { get; set; } public decimal SalePrice { get; set; } public decimal DiscountPercentage { get; set; } public long Stock { get; set; } public string ArtistName { get; set; } = null!; }