Table of Contents

Class VersionInfo

Namespace
RadioExt_Helper.utility
Assembly
RadioExt-Helper.dll
Simple class to hold the latest version of the application and the download URL.
public sealed class VersionInfo
Inheritance
VersionInfo
Inherited Members

Constructors

VersionInfo(Version, string)

Simple class to hold the latest version of the application and the download URL.
public VersionInfo(Version latestVersion, string downloadUrl)

Parameters

latestVersion Version
The latest version of the application retrieved from GitHub.
downloadUrl string
The direct download URL for the latest version.

Properties

DownloadUrl

The direct download URL for the latest version.
public string DownloadUrl { get; set; }

Property Value

string

LatestVersion

The latest version of the application retrieved from GitHub.
public Version LatestVersion { get; set; }

Property Value

Version