20 lines
365 B
C#
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; }
|
|
}
|
|
}
|