11 lines
284 B
C#
11 lines
284 B
C#
namespace Hutopy.Common.Domain;
|
|
|
|
public abstract class Entity
|
|
{
|
|
public Guid Id { get; init; }
|
|
public Guid CreatedBy { get; init; }
|
|
public DateTimeOffset CreatedAt { get; init; }
|
|
public Guid? DeletedBy { get; set; }
|
|
public DateTimeOffset? DeletedAt { get; set; }
|
|
}
|