Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Polls;
///
/// Represents a poll answer
///
public partial class PollAnswer : BaseEntity
{
///
/// Gets or sets the poll identifier
///
public int PollId { get; set; }
///
/// Gets or sets the poll answer name
///
public string Name { get; set; }
///
/// Gets or sets the current number of votes
///
public int NumberOfVotes { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
}