Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Polls;
/// <summary>
/// Represents a poll voting record
/// </summary>
public partial class PollVotingRecord : BaseEntity
{
/// <summary>
/// Gets or sets the poll answer identifier
/// </summary>
public int PollAnswerId { get; set; }
/// <summary>
/// Gets or sets the customer identifier
/// </summary>
public int CustomerId { get; set; }
/// <summary>
/// Gets or sets the date and time of instance creation
/// </summary>
public DateTime CreatedOnUtc { get; set; }
}