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
8 lines
213 B
C#
8 lines
213 B
C#
namespace PlanTempus.Components.Organizations.Create
|
|
{
|
|
public class CreateOrganizationCommand
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public Guid AccountId { get; set; }
|
|
}
|
|
}
|