12 lines
280 B
C#
12 lines
280 B
C#
namespace Extrudex.Domain.Base;
|
|
|
|
/// <summary>
|
|
/// Base entity providing a primary key identifier.
|
|
/// </summary>
|
|
public abstract class BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Unique identifier for the entity.
|
|
/// </summary>
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
} |