18 lines
408 B
C#
18 lines
408 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace HPlusSports.Models
|
|
{
|
|
public class Review
|
|
{
|
|
public long Id { get; set; }
|
|
public string UserId { get; set; }
|
|
|
|
public string SKU { get; set; }
|
|
|
|
[Range(minimum: 1, maximum: 5)]
|
|
public int Rating { get; set; }
|
|
|
|
[DataType(DataType.MultilineText)]
|
|
public string Comments { get; set; }
|
|
}
|
|
} |