2025-03-04 17:13:02 +01:00
|
|
|
|
2026-01-09 22:14:46 +01:00
|
|
|
namespace PlanTempus.Components.Accounts.Create
|
2025-03-04 17:13:02 +01:00
|
|
|
{
|
2026-01-09 22:14:46 +01:00
|
|
|
public class CreateAccountResult
|
2025-03-04 17:13:02 +01:00
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public string Email { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
|
}
|
2026-01-09 22:14:46 +01:00
|
|
|
}
|