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

16 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace PartSource.Data.Models
{
public class ProductBackup
{
[Key]
public long ShopifyId { get; set; }
public string ProductJson { get; set; }
}
}