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