Files
social-media/backend/Common/Domain/Entity.cs
2025-06-13 02:22:35 -04:00

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; }
}