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