PlanTempusApp/PlanTempus.Components/Accounts/Create/CreateAccountCommand.cs

12 lines
307 B
C#
Raw Permalink Normal View History

2025-03-12 00:13:53 +01:00
using PlanTempus.Core.CommandQueries;
namespace PlanTempus.Components.Accounts.Create
2025-03-04 17:13:02 +01:00
{
public class CreateAccountCommand : Command
2025-03-10 15:56:22 +01:00
{
2025-03-10 18:10:00 +01:00
public required string Email { get; set; }
public required string Password { get; set; }
2025-03-10 15:56:22 +01:00
public bool IsActive { get; set; } = true;
}
}