Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Vendors;
/// 
/// Represents a vendor note
///  
public partial class VendorNote : BaseEntity
{
    /// 
    /// Gets or sets the vendor identifier
    ///  
    public int VendorId { get; set; }
    /// 
    /// Gets or sets the note
    ///  
    public string Note { get; set; }
    /// 
    /// Gets or sets the date and time of vendor note creation
    ///  
    public DateTime CreatedOnUtc { get; set; }
}