namespace Nexus.Domain.Entities; public class Project { public Guid Id { get; set; } public string Name { get; set; } = null!; public DateTime CreatedAt { get; set; } }