Last active
December 21, 2016 10:20
-
-
Save abel-masila/6e7c820d04cc360f27659b1e46fdc54e to your computer and use it in GitHub Desktop.
The Model
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Web; | |
namespace ProductsApp.Models | |
{ | |
public class Product | |
{ | |
[Key] | |
public int Id { get; set; } | |
public string ProductNAme { get; set; } | |
public decimal Price { get; set; } | |
public string Description { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment