Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Shipping.UPS.Domain;
/// <summary>
/// Represents custom attribute for UPS code
/// </summary>
public class UPSCodeAttribute : Attribute
{
#region Ctor
public UPSCodeAttribute(string codeValue)
{
Code = codeValue;
}
#endregion
#region Properties
/// <summary>
/// Gets a code value
/// </summary>
public string Code { get; }
#endregion
}