11 lines
No EOL
300 B
C#
11 lines
No EOL
300 B
C#
using PlanTempus.Core.CommandQueries;
|
|
|
|
namespace PlanTempus.Components.Users.Create
|
|
{
|
|
public class CreateUserCommand : Command
|
|
{
|
|
public required string Email { get; set; }
|
|
public required string Password { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
} |