Query.cs 177 B

123456
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Director.Role.Permissions.Get
  3. {
  4. public sealed record Query(string RoleID) : IQuery<Response>;
  5. }