16 lines
375 B
C#
16 lines
375 B
C#
using Core.Blueprint.Mongo;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Thalos.Application.UseCases.Roles.Input
|
|
{
|
|
public class ChangeRoleStatusRequest : Notificator, ICommand
|
|
{
|
|
public string Id { get; set; }
|
|
public StatusEnum Status { get; set; }
|
|
public bool Validate()
|
|
{
|
|
return Id != null;
|
|
}
|
|
}
|
|
}
|