14 lines
295 B
C#
14 lines
295 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Web;
|
|||
|
using SportsStore.Domain.Entities;
|
|||
|
|
|||
|
namespace SportsStore.WebUI.Models
|
|||
|
{
|
|||
|
public class CartIndexViewModel
|
|||
|
{
|
|||
|
public Cart Cart { get; set; }
|
|||
|
public string ReturnUrl { get; set; }
|
|||
|
}
|
|||
|
}
|