mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
16 lines
342 B
C#
16 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace EssentialTools.Models
|
|
{
|
|
public class Product
|
|
{
|
|
public int ProductID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public decimal Price { get; set; }
|
|
public string Category { get; set; }
|
|
}
|
|
} |