using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShwasherSys.ProductInfo.Dto { public class ReplaceProductDto { public string ProductNo { get; set; } public List PreReplaceProducts { get; set; } } public class PreReplaceProductDto { public string ProductType { get; set; } public string ReplaceProductNo { get; set; } } public class ReturnReplaceResultDto { public string ProductNo { get; set; } public string RetCode { get; set; } public string ErrorInfo { get; set; } public bool IsSuccess { get; set; } } }