user create command and user repo

This commit is contained in:
2026-02-04 22:18:05 +01:00
parent b73fd8eb05
commit 01f25fb093
10 changed files with 136 additions and 5 deletions

View File

@@ -2,4 +2,7 @@
namespace AipsCore.Domain.Models.User.ValueObjects;
public record UserId(string IdValue) : DomainId(IdValue);
public record UserId(string IdValue) : DomainId(IdValue)
{
public static UserId Any() => new(Guid.NewGuid().ToString());
}