Files
Partsource/PartSource.Data/Models/PartPrice.cs
2020-04-12 20:52:03 -04:00

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; }
}
}