mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-10 17:59:38 +08:00
13 lines
376 B
C#
13 lines
376 B
C#
namespace BuildingBlocks.Core.Model;
|
|
|
|
public abstract record Entity<T> : IEntity<T>
|
|
{
|
|
public T Id { get; set; }
|
|
public DateTime? CreatedAt { get; set; }
|
|
public long? CreatedBy { get; set; }
|
|
public DateTime? LastModified { get; set; }
|
|
public long? LastModifiedBy { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public long Version { get; set; }
|
|
}
|