Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel;
namespace Nop.Services.Common.Pdf;
///
/// Represents the data source for the packaging slip
///
public partial class ShipmentSource : DocumentSource
{
#region Ctor
public ShipmentSource()
{
Products = new();
}
#endregion
#region Properties
///
/// Gets or sets the shipping address
///
[DisplayName("Pdf.ShippingInformation")]
public AddressItem Address { get; set; }
///
/// Gets or sets the order number
///
[DisplayName("Pdf.Order")]
public string OrderNumberText { get; set; }
///
/// Gets or sets a collection of shipping items
///
public List Products { get; set; }
///
/// Gets or sets the shipment number
///
[DisplayName("Pdf.Shipment")]
public string ShipmentNumberText { get; set; }
#endregion
}