aspnetcore/samples/MvcSample.Web/Models/Product.cs

9 lines
125 B
C#

using System;
namespace MvcSample.Web
{
public class Product
{
public int SampleInt { get; set; }
}
}