Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/CachedRateRequestData.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using System.Collections.Generic;

namespace Dynamicweb.Ecommerce.ShippingProviders.FedEx;

/// <summary>
/// Structure that is used while calculating shipping fee for the specified order in FedEx shipping provider
/// </summary>
internal struct CachedRateRequestData
{
public string Request;
public double Rate;
public string Currency;
public List<string> Errors;
public List<string> Warning;
}

This file was deleted.

This file was deleted.

Loading