safaribook-pro-aspnet-mvc3/SportsStore/SportsStore.WebUI/Product.cs

24 lines
782 B
C#
Raw Permalink Normal View History

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace SportsStore.WebUI
{
using System;
using System.Collections.Generic;
public partial class Product
{
public int ProductID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Category { get; set; }
public decimal Price { get; set; }
}
}