using Core.Cerberos.Adapters.Common.Enums; using Lib.Architecture.BuildingBlocks; namespace Core.Cerberos.Application.UseCases.Roles.Input { public class AddApplicationToRoleRequest : Notificator, ICommand { public string RoleId { get; set; } public ApplicationsEnum Application { get; set; } public bool Validate() { return true; } } }