Files
react-dotnet-framework/backend/Data/User.cs
2026-08-03 04:23:32 -04:00

16 lines
387 B
C#

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;
}