feat: builders, specifications

This commit is contained in:
Kylnic28
2024-10-05 20:36:34 +02:00
parent 4811837ca6
commit 17a7e651c8
24 changed files with 422 additions and 17 deletions

View File

@@ -0,0 +1,6 @@
using Bahla.Domain.Types;
namespace Bahla.Domain.Entities.Base
{
public abstract record Entity(Identifier UUID) : IEntity;
}