fleshout backend

This commit is contained in:
KS Jannette
2026-08-03 04:23:32 -04:00
parent a00282b1e6
commit 092ef17439
19 changed files with 500 additions and 52 deletions

15
backend/Data/User.cs Normal file
View File

@@ -0,0 +1,15 @@
namespace Backend.Data;
/// <summary>
/// Placeholder domain entity. Replace with the real model once the project has one.
/// </summary>
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;
}