Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Common;
namespace Nop.Core.Domain.Affiliates;
///
/// Represents an affiliate
///
public partial class Affiliate : BaseEntity, ISoftDeletedEntity
{
///
/// Gets or sets the address identifier
///
public int AddressId { get; set; }
///
/// Gets or sets the admin comment
///
public string AdminComment { get; set; }
///
/// Gets or sets the friendly name for generated affiliate URL (by default affiliate ID is used)
///
public string FriendlyUrlName { get; set; }
///
/// Gets or sets a value indicating whether the entity has been deleted
///
public bool Deleted { get; set; }
///
/// Gets or sets a value indicating whether the entity is active
///
public bool Active { get; set; }
}