Current state, whatever that means

This commit is contained in:
2022-03-17 20:04:12 -04:00
parent fb6dbdfaa7
commit 60edbee0b8
22 changed files with 1087 additions and 156 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace PartSource.Automation.Models.Jobs
{
public class UpdatePricingResult
{
public string Sku { get; set; }
public decimal OldPrice { get; set; }
public decimal NewPrice { get; set; }
public decimal OldCompareAt { get; set; }
public decimal NewCompareAt { get; set; }
}
}