25 lines
419 B
C#
25 lines
419 B
C#
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
|
|
} |