Stuff and things

This commit is contained in:
2021-06-29 19:00:13 -04:00
parent 0ff42f148a
commit 962ad3383f
22 changed files with 320 additions and 226 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PartSource.Data.Models
{
public class ShopifyChangelog
{
public int Id { get; set; }
public Type ResourceType { get; set; }
public long ShopifyId { get; set; }
public DateTime Timestamp { get; set; }
public object Data { get; set; }
}
}