Webiant Logo Webiant Logo
  1. No results found.

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

ActivityLog.cs

namespace Nop.Core.Domain.Logging;

/// 
/// Represents an activity log record
/// 
public partial class ActivityLog : BaseEntity
{
    /// 
    /// Gets or sets the activity log type identifier
    /// 
    public int ActivityLogTypeId { get; set; }

    /// 
    /// Gets or sets the entity identifier
    /// 
    public int? EntityId { get; set; }

    /// 
    /// Gets or sets the entity name
    /// 
    public string EntityName { get; set; }

    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }

    /// 
    /// Gets or sets the activity comment
    /// 
    public string Comment { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }

    /// 
    /// Gets or sets the IP address
    /// 
    public virtual string IpAddress { get; set; }
}