﻿namespace KernelRecordsMVC.Application.ViewModels;

public class CartItemViewModel
{
    public long ProductId { get; set; }

    public long ReleaseId { get; set; }

    public string ReleaseTitle { get; set; } = null!;

    public string Format { get; set; } = null!;

    public decimal Price { get; set; }

    public long Quantity { get; set; }

    public long Stock { get; set; }
    
    public string? CoverPhoto { get; set; }

    public decimal Total =>
        Price * Quantity;
}