Class MatrixEntry
- Namespace
- AgentContainers.Core.Matrix
- Assembly
- AgentContainers.Core.dll
A single entry in the compatibility matrix: one runtime × one agent combination.
public sealed record MatrixEntry : IEquatable<MatrixEntry>
- Inheritance
-
MatrixEntry
- Implements
- Inherited Members
Constructors
MatrixEntry(string, string, string, bool)
A single entry in the compatibility matrix: one runtime × one agent combination.
public MatrixEntry(string RuntimeId, string RuntimeType, string AgentId, bool Compatible)
Parameters
Properties
AgentId
public string AgentId { get; init; }
Property Value
Compatible
public bool Compatible { get; init; }
Property Value
RuntimeId
public string RuntimeId { get; init; }
Property Value
RuntimeType
public string RuntimeType { get; init; }