9 lines
256 B
C#
9 lines
256 B
C#
namespace PlanTempus.Components.Organizations.Create
|
|
{
|
|
public class CreateOrganizationCommand
|
|
{
|
|
public string Name { get; set; }
|
|
public string ConnectionString { get; set; }
|
|
public Guid CreatedById { get; set; }
|
|
}
|
|
}
|