netcore-service-sample/model/product.cs

11 lines
215 B
C#

namespace hello.model
{
public class Product
{
public int Id {get;set;}
public string Name{get;set;}
public int Quantity{get;set;}
public int CategoryId{get;set;}
}
}