Initial commit

This commit is contained in:
2020-04-12 20:52:03 -04:00
parent e750d2848a
commit 01e7627293
249 changed files with 9733 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace PartSource.Data.Models
{
//[Table("ImportDataOld")]
public class ImportData
{
public string Title { get; set; }
public string BodyHtml { get; set; }
public string Vendor { get; set; }
public bool? IsVariant { get; set; }
public string VariantTitle { get; set; }
[Key]
public string VariantSku { get; set; }
public decimal Price { get; set; }
public decimal CompareAt { get; set; }
public long? ShopifyId { get; set; }
public string ImageSrc { get; set; }
public string ImageAltText { get; set; }
public bool? IsFitment { get; set; }
public string LineCode { get; set; }
public string PartNumber { get; set; }
}
}