42 lines
1.0 KiB
C#
42 lines
1.0 KiB
C#
namespace Nop.Core.Domain.Logging;
|
|
|
|
/// <summary>
|
|
/// Represents an activity log record
|
|
/// </summary>
|
|
public partial class ActivityLog : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the activity log type identifier
|
|
/// </summary>
|
|
public int ActivityLogTypeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the entity identifier
|
|
/// </summary>
|
|
public int? EntityId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the entity name
|
|
/// </summary>
|
|
public string EntityName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the customer identifier
|
|
/// </summary>
|
|
public int CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the activity comment
|
|
/// </summary>
|
|
public string Comment { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the date and time of instance creation
|
|
/// </summary>
|
|
public DateTime CreatedOnUtc { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the IP address
|
|
/// </summary>
|
|
public virtual string IpAddress { get; set; }
|
|
} |