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