handle plugin manifests automatically

This commit is contained in:
dkanada
2021-02-12 22:33:10 +09:00
parent 76d66e0dee
commit 9caf311925
4 changed files with 61 additions and 34 deletions

View File

@@ -1,4 +1,5 @@
#nullable disable
using System;
using System.Text.Json.Serialization;
@@ -45,5 +46,11 @@ namespace MediaBrowser.Model.Updates
/// </summary>
/// <value>The checksum.</value>
public string Checksum { get; set; }
/// <summary>
/// Gets or sets package information for the installation.
/// </summary>
/// <value>The package information.</value>
public PackageInfo PackageInfo { get; set; }
}
}