Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

UPSCodeAttribute.cs

namespace Nop.Plugin.Shipping.UPS.Domain;

/// 
/// Represents custom attribute for UPS code
/// 
public class UPSCodeAttribute : Attribute
{
    #region Ctor

    public UPSCodeAttribute(string codeValue)
    {
        Code = codeValue;
    }

    #endregion

    #region Properties

    /// 
    /// Gets a code value
    /// 
    public string Code { get; }

    #endregion
}