Mango.Nop.Libraries/Nop.Core/Domain/Shipping/Warehouse.cs

22 lines
513 B
C#

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; }
}