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