10 lines
250 B
C#
10 lines
250 B
C#
|
|
namespace PlanTempus.Components.Organizations.Create
|
|||
|
|
{
|
|||
|
|
public class CreateOrganizationCommand
|
|||
|
|
{
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
public string Description { get; set; }
|
|||
|
|
public Guid CreatedById { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|