using System.ComponentModel.DataAnnotations;
namespace RazorApplication.Models
public int ProductId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Decimal Price { get; set; }
public string Catagoery { get; set; }