24 lines
782 B
C#
24 lines
782 B
C#
//------------------------------------------------------------------------------
|
|
// <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; }
|
|
}
|
|
}
|