Add project files.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Core.Cerberos.Adapters.Common.Enums;
|
||||
using Lib.Architecture.BuildingBlocks;
|
||||
|
||||
namespace Core.Cerberos.Application.UseCases.Users.Input
|
||||
{
|
||||
public class ChangeUserStatusRequest : Notificator, ICommand
|
||||
{
|
||||
public string Id { get; set; }
|
||||
public StatusEnum Status { get; set; }
|
||||
|
||||
public bool Validate()
|
||||
{
|
||||
return Id != null;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user