Table of Contents

Class ModUpdateInfo

Namespace
McServerLauncher.Models
Assembly
McServerLauncher.dll

Everything needed to update an installed mod to its latest Modrinth version.

public record ModUpdateInfo : IEquatable<ModUpdateInfo>
Inheritance
ModUpdateInfo
Implements
Inherited Members

Constructors

ModUpdateInfo(string, string, string, string?, string?)

Everything needed to update an installed mod to its latest Modrinth version.

public ModUpdateInfo(string VersionNumber, string Url, string FileName, string? Sha512, string? Sha1)

Parameters

VersionNumber string
Url string
FileName string
Sha512 string
Sha1 string

Properties

FileName

public string FileName { get; init; }

Property Value

string

Sha1

public string? Sha1 { get; init; }

Property Value

string

Sha512

public string? Sha512 { get; init; }

Property Value

string

Url

public string Url { get; init; }

Property Value

string

VersionNumber

public string VersionNumber { get; init; }

Property Value

string