PlanTempusApp/PlanTempus.Components/Users/Create/CreateUserCommand.cs

11 lines
300 B
C#
Raw Normal View History

2025-03-12 00:13:53 +01:00
using PlanTempus.Core.CommandQueries;
2025-03-04 17:13:02 +01:00
namespace PlanTempus.Components.Users.Create
{
2025-03-12 00:13:53 +01:00
public class CreateUserCommand : 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;
}
2025-03-04 17:13:02 +01:00
}