Class ContentDependencyCheck.Missing
- Namespace
- McServerLauncher.Services
- Assembly
- McServerLauncher.dll
Something needed that nothing installed provides.
public record ContentDependencyCheck.Missing : IEquatable<ContentDependencyCheck.Missing>
- Inheritance
-
ContentDependencyCheck.Missing
- Implements
- Inherited Members
Constructors
Missing(string, IReadOnlyList<string>)
Something needed that nothing installed provides.
public Missing(string Id, IReadOnlyList<string> NeededBy)
Parameters
IdstringThe id or plugin name that is missing.
NeededByIReadOnlyList<string>The jars waiting on it, by file name.
Properties
Id
The id or plugin name that is missing.
public string Id { get; init; }
Property Value
NeededBy
The jars waiting on it, by file name.
public IReadOnlyList<string> NeededBy { get; init; }