7 lines
133 B
C#
7 lines
133 B
C#
using Bahla.Domain.Types;
|
|
|
|
namespace Bahla.Domain.Entities.Base
|
|
{
|
|
public abstract record Entity(Identifier UUID) : IEntity;
|
|
}
|