namespace KernelRecordsMVC.Application.ViewModels; public class TopSellerViewModel { 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 Price { get; set; } public long Stock { get; set; } public long SoldQuantity { get; set; } public string ArtistName { get; set; } = null!; }