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

11 lines
309 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace MvcSample.Web
{
public class Product
{
public int SampleInt { get; set; }
}
}