14 lines
313 B
C#
14 lines
313 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Cerberos.Application.UseCases.Users.Input
|
|
{
|
|
public class ValidateUserExistenceRequest : Notificator, ICommand
|
|
{
|
|
public string Email { get; set; }
|
|
public bool Validate()
|
|
{
|
|
return Email != null;
|
|
}
|
|
}
|
|
}
|