Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Misc.RFQ.Domains;
/// <summary>
/// Represent the entity with administration notes field
/// </summary>
public interface IAdminNote
{
/// <summary>
/// Gets or sets the administration notes
/// </summary>
string AdminNotes { get; set; }
}