22 lines
551 B
C#
22 lines
551 B
C#
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; }
|
|
} |