mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
16 lines
371 B
C#
16 lines
371 B
C#
namespace BuildingBlocks.Core.Model;
|
|
|
|
public interface IEntity<T> : IEntity
|
|
{
|
|
public T Id { get; set; }
|
|
}
|
|
|
|
public interface IEntity : IVersion
|
|
{
|
|
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; }
|
|
}
|