namespace Nop.Core;
/// <summary>
/// Represents the base class for entities
/// </summary>
public abstract partial class BaseEntity
{
/// Gets or sets the entity identifier
public int Id { get; set; }
}