18 lines
368 B
C#
18 lines
368 B
C#
//namespace Nop.Core.Domain.Common;
|
|
namespace Nop.Core;
|
|
|
|
/// <summary>
|
|
/// Represents the base class for entities
|
|
/// </summary>
|
|
public abstract partial class BaseEntity : IBaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the entity identifier
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
}
|
|
|
|
public interface IBaseEntity
|
|
{
|
|
public int Id { get; set; }
|
|
} |