16 lines
367 B
C#
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
|
|
|
|
}
|
|
}
|