mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
32 lines
847 B
C#
32 lines
847 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace SportsStore.Domain.Entities
|
|
{
|
|
public class Product
|
|
{
|
|
[HiddenInput(DisplayValue = false)]
|
|
public int ProductID { get; set; }
|
|
|
|
[Required(ErrorMessage = "Please enter a product name")]
|
|
public string Name { get; set; }
|
|
|
|
[DataType(DataType.MultilineText)]
|
|
[Required(ErrorMessage = "Please enter a description")]
|
|
public string Description { get; set; }
|
|
|
|
[Required]
|
|
[Range(0.01, double.MaxValue, ErrorMessage = "Please enter a positive price")]
|
|
public decimal Price { get; set; }
|
|
|
|
[Required(ErrorMessage = "Please specify a category")]
|
|
public string Category { get; set; }
|
|
|
|
public byte[] ImageData { get; set; }
|
|
public string ImageMimeType { get; set; }
|
|
}
|
|
} |