PlanTempusApp/PlanTempus.Components/Organizations/Create/CreateOrganizationCommand.cs

10 lines
250 B
C#
Raw Normal View History

2025-03-03 00:42:20 +01:00
namespace PlanTempus.Components.Organizations.Create
{
public class CreateOrganizationCommand
{
public string Name { get; set; }
public string Description { get; set; }
public Guid CreatedById { get; set; }
}
}