Various work around the architecture

This commit is contained in:
Janus C. H. Knudsen 2025-03-03 00:42:20 +01:00
parent b1e134490d
commit 71576a4b1f
18 changed files with 522 additions and 358 deletions

View file

@ -0,0 +1,9 @@
namespace PlanTempus.Components.Organizations.Create
{
public class CreateOrganizationCommand
{
public string Name { get; set; }
public string Description { get; set; }
public Guid CreatedById { get; set; }
}
}