16 lines
410 B
C#
16 lines
410 B
C#
using Core.Cerberos.Adapters.Common.Enums;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Cerberos.Application.UseCases.Roles.Input
|
|
{
|
|
public class RemoveApplicationFromRoleRequest : Notificator, ICommand
|
|
{
|
|
public string RoleId { get; set; }
|
|
public ApplicationsEnum Application { get; set; }
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|