46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
|
|
namespace PartSource.Data.Models
|
|
{
|
|
[Table("ImportDataFitment")]
|
|
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; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public string UpdateType { get; set; }
|
|
}
|
|
}
|