2025-03-03 00:42:20 +01:00
|
|
|
|
namespace PlanTempus.Components.Organizations.Create
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CreateOrganizationCommand
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
2025-03-04 23:54:55 +01:00
|
|
|
|
public string ConnectionString { get; set; }
|
2025-03-03 00:42:20 +01:00
|
|
|
|
public Guid CreatedById { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|