42 lines
939 B
C#
42 lines
939 B
C#
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; }
|
|
}
|
|
}
|