update plugin classes for nightly builds

This commit is contained in:
dkanada
2020-02-26 01:58:39 +09:00
parent 557b165f01
commit 974a04c129
18 changed files with 150 additions and 333 deletions
@@ -17,13 +17,13 @@ namespace MediaBrowser.Model.Updates
/// <value>The available version.</value>
public string AvailableVersion
{
get => Package != null ? Package.versionStr : "0.0.0.1";
get => Package != null ? Package.versionString : "0.0.0.1";
set { } // need this for the serializer
}
/// <summary>
/// Get or sets package information for an available update
/// </summary>
public PackageVersionInfo Package { get; set; }
public VersionInfo Package { get; set; }
}
}