SzkoleniaRiskoff/src/Libraries/Nop.Core/BaseEntity.cs

12 lines
252 B
C#
Raw Normal View History

2024-08-21 06:17:23 -04:00
namespace Nop.Core;
/// <summary>
/// Represents the base class for entities
/// </summary>
public abstract partial class BaseEntity
{
/// <summary>
/// Gets or sets the entity identifier
/// </summary>
public int Id { get; set; }
}