Webiant Logo Webiant Logo
  1. No results found.

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

SampleActivityLog.cs

namespace Nop.Services.Installation.SampleData;

/// 
/// Represents a sample activity log record
/// 
public partial class SampleActivityLog
{
    /// 
    /// Gets or sets the activity comment
    /// 
    public string Comment { get; set; }

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

    /// 
    /// Gets or sets the activity log type
    /// 
    public string ActivityLogType { get; set; }
}