15 lines
No EOL
385 B
C#
15 lines
No EOL
385 B
C#
namespace PlanTempus.Components.Users.Create
|
|
{
|
|
public interface ICommand
|
|
{
|
|
Guid CorrelationId { get; set; }
|
|
}
|
|
|
|
public class CreateUserCommand : ICommand
|
|
{
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
public required Guid CorrelationId { get; set; }
|
|
}
|
|
} |