Renames core domain entities and services from "User" to "Account" Refactors project-wide namespaces, classes, and database tables to use "Account" terminology Updates related components, services, and database schema to reflect new domain naming Standardizes naming conventions across authentication and organization setup features
11 lines
242 B
C#
11 lines
242 B
C#
|
|
namespace PlanTempus.Components.Accounts.Create
|
|
{
|
|
public class CreateAccountResult
|
|
{
|
|
public long Id { get; set; }
|
|
public string Email { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
}
|