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