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;

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

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

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