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