using Nop.Core.Configuration;
namespace Nop.Plugin.Shipping.NopCliGeneric
{
public class ShippingNopCliGenericSettings : ISettings
{
///
/// API key
///
public string ApiKey { get; set; }
///
/// API secret
///
public string ApiSecret { get; set; }
///
/// Set to true if need pass dimensions to the ShippingNopCliGeneric server
///
public bool PassDimensions { get; set; }
///
/// Packing type
///
public PackingType PackingType { get; set; }
///
/// Package volume
///
public int PackingPackageVolume { get; set; }
///
/// ShippingNopCliGeneric user name
///
public string UserName { get; set; }
///
/// ShippingNopCliGeneric password
///
public string Password { get; set; }
}
}