Files
Partsource/PartSource.Data/Models/PartPrice.cs

19 lines
517 B
C#

namespace PartSource.Data.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
public partial class PartPrice
{
[Key]
public string SKU { get; set; }
public Nullable<decimal> Compare_Price { get; set; }
public Nullable<decimal> Your_Price { get; set; }
public decimal? Core_Price { get; set; }
public string Active { get; set; }
// public virtual PartData PartData { get; set; }
}
}