Try your search with a different keyword or use * as a wildcard.
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
}