Webiant Logo Webiant Logo
  1. No results found.

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

ActivityLogType.cs

namespace Nop.Core.Domain.Logging;

/// <summary>
/// Represents an activity log type record
/// </summary>
public partial class ActivityLogType : BaseEntity
{
    /// <summary>
    /// Gets or sets the system keyword
    /// </summary>
    public string SystemKeyword { get; set; }

    /// <summary>
    /// Gets or sets the display name
    /// </summary>
    public string Name { get; set; }

    /// <summary>
    /// Gets or sets a value indicating whether the activity log type is enabled
    /// </summary>
    public bool Enabled { get; set; }
}