Files
rockfish/Models/Product.cs
2018-06-28 23:37:38 +00:00

16 lines
367 B
C#

using System;
using System.Collections.Generic;
namespace rockfishCore.Models
{
public partial class Product
{
public long Id { get; set; }
public string Name { get; set; }
public string ProductCode { get; set; }
public long Price { get; set; }//in cents
public long RenewPrice { get; set; }//in cents
}
}