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