Migrate from User to Account domain concept
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
This commit is contained in:
parent
e5e7c1c19f
commit
88812177a9
29 changed files with 288 additions and 298 deletions
11
PlanTempus.Components/Accounts/Create/CreateAccountResult.cs
Normal file
11
PlanTempus.Components/Accounts/Create/CreateAccountResult.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue