Files
Partsource/PartSource.Automation/Models/Jobs/UpdatePricingResult.cs

20 lines
365 B
C#

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