chore: moving towards agentic development
This commit is contained in:
10
backend/src/Socialize.Api/Common/Domain/Entity.cs
Normal file
10
backend/src/Socialize.Api/Common/Domain/Entity.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Socialize.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; }
|
||||
}
|
||||
Reference in New Issue
Block a user