namespace Backend.Data; /// /// Placeholder domain entity. Replace with the real model once the project has one. /// public sealed class User { public Guid Id { get; init; } = Guid.NewGuid(); public required string Email { get; set; } public required string DisplayName { get; set; } public DateTime CreatedAt { get; init; } = DateTime.UtcNow; }