Webiant Logo Webiant Logo
  1. No results found.

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

Warehouse.cs

namespace Nop.Core.Domain.Shipping;

/// <summary>
/// Represents a shipment
/// </summary>
public partial class Warehouse : BaseEntity
{
    /// <summary>
    /// Gets or sets the warehouse name
    /// </summary>
    public string Name { get; set; }

    /// <summary>
    /// Gets or sets the admin comment
    /// </summary>
    public string AdminComment { get; set; }

    /// <summary>
    /// Gets or sets the address identifier of the warehouse
    /// </summary>
    public int AddressId { get; set; }
}