Try your search with a different keyword or use * as a wildcard.
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; }
}