Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Stores;
namespace Nop.Core.Domain.Polls;
/// <summary>
/// Represents a poll
/// </summary>
public partial class Poll : BaseEntity, IStoreMappingSupported
{
/// <summary>
/// Gets or sets the language identifier
/// </summary>
public int LanguageId { get; set; }
/// <summary>
/// Gets or sets the name
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the system keyword
/// </summary>
public string SystemKeyword { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the entity is published
/// </summary>
public bool Published { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the entity should be shown on home page
/// </summary>
public bool ShowOnHomepage { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the anonymous votes are allowed
/// </summary>
public bool AllowGuestsToVote { get; set; }
/// <summary>
/// Gets or sets the display order
/// </summary>
public int DisplayOrder { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
/// </summary>
public bool LimitedToStores { get; set; }
/// <summary>
/// Gets or sets the poll start date and time
/// </summary>
public DateTime? StartDateUtc { get; set; }
/// <summary>
/// Gets or sets the poll end date and time
/// </summary>
public DateTime? EndDateUtc { get; set; }
}