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

16 lines
359 B
C#
Raw Normal View History

2025-03-03 00:42:20 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PlanTempus.Components.Organizations.Create
{
public class CreateOrganizationResponse
{
public Guid Id { get; set; }
public string Name { get; set; }
public DateTime CreatedAt { get; set; }
}
}