13 lines
251 B
C#
13 lines
251 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Cerberos.Application.UseCases.Permissions.Input
|
|
{
|
|
public class GetAllPermissionsRequest : ICommand
|
|
{
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|