Files
ProductiveAspNetMvc/Ch05/05_04_End/Common/Models/ProductRating.cs
2018-06-11 01:44:36 -04:00

9 lines
207 B
C#

namespace HPlusSports.Models
{
public class ProductRating
{
public string SKU { get; set; }
public double? Rating { get; set; }
public int ReviewCount { get; set; }
}
}