Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PollVotingRecord.cs

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; }
}