Core.Thalos.Service.API/Core.Cerberos.Application/UseCases/Roles/Input/RemoveApplicationFromRoleRequest.cs
Sergio Matias Urquin 7d760b589e Add project files.
2025-04-29 18:56:29 -06:00

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;
}
}
}