Interface for all bridge response types.
| 6 | /// Interface for all bridge response types. |
| 7 | /// </summary> |
| 8 | public interface IBridgeResponse |
| 9 | { |
| 10 | bool Success { get; } |
| 11 | JObject ToJson(); |
| 12 | } |
| 13 | |
| 14 | /// <summary> |
| 15 | /// Represents a successful response. |
nothing calls this directly
no outgoing calls
no test coverage detected