namespace ColaFlow.Modules.Mcp.Application.DTOs;
///
/// Request DTO for updating API Key permissions
///
public class UpdateApiKeyPermissionsRequest
{
public bool Read { get; set; }
public bool Write { get; set; }
public List? AllowedResources { get; set; }
public List? AllowedTools { get; set; }
public List? IpWhitelist { get; set; }
}