mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-26 07:24:09 +08:00
11 lines
300 B
C#
11 lines
300 B
C#
namespace BuildingBlocks.Core.Model;
|
|
|
|
public abstract record Audit : IAudit
|
|
{
|
|
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; }
|
|
}
|