Webiant Logo Webiant Logo
  1. No results found.

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

ISoftDeletedEntity.cs

namespace Nop.Core.Domain.Common;

/// 
/// Represents a soft-deleted (without actually deleting from storage) entity
/// 
public partial interface ISoftDeletedEntity
{
    /// 
    /// Gets or sets a value indicating whether the entity has been deleted
    /// 
    bool Deleted { get; set; }
}