18 lines
468 B
C#
18 lines
468 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 string Active { get; set; }
|
|
|
|
// public virtual PartData PartData { get; set; }
|
|
}
|
|
}
|