Table of Contents

Class PluginManifestBackendDto

Namespace
Builvero.Application.DTOs.Plugin
Assembly
Builvero.Application.dll

Backend service configuration.

public class PluginManifestBackendDto
Inheritance
PluginManifestBackendDto
Inherited Members

Properties

AllowedOrigins

Gets or sets the allowed origins for postMessage.

[JsonPropertyName("allowedOrigins")]
public List<string> AllowedOrigins { get; set; }

Property Value

List<string>
Backend service configuration.

Api

Gets or sets the API routes exposed by the plugin.

[JsonPropertyName("api")]
public List<PluginManifestApiRouteDto>? Api { get; set; }

Property Value

List<PluginManifestApiRouteDto>
Backend service configuration.

BaseUrl

Gets or sets the base URL of the plugin service.

[JsonPropertyName("baseUrl")]
public string BaseUrl { get; set; }

Property Value

string
Backend service configuration.

HealthPath

Gets or sets the health check path.

[JsonPropertyName("healthPath")]
public string? HealthPath { get; set; }

Property Value

string
Backend service configuration.