Webiant Logo Webiant Logo
  1. No results found.

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

PollAnswer.cs

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