diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2021-02-25 17:17:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-25 17:17:34 +0900 |
| commit | c54ca489f1fc3cbf12c4b7714389fe80f4038f84 (patch) | |
| tree | 3989c3888513ba3aa6f5e148a271a43c418de595 /MediaBrowser.Model/Updates | |
| parent | bae97322a073fcb507fd5918385c0c6157b7ea54 (diff) | |
| parent | 9bfe945f6c1f41ea3456ae27b1ad31a04f3cea3f (diff) | |
Merge pull request #5217 from jellyfin/auto-manifest
handle plugin manifests automatically
Diffstat (limited to 'MediaBrowser.Model/Updates')
| -rw-r--r-- | MediaBrowser.Model/Updates/InstallationInfo.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Updates/InstallationInfo.cs b/MediaBrowser.Model/Updates/InstallationInfo.cs index eebe1a903..cc600de9d 100644 --- a/MediaBrowser.Model/Updates/InstallationInfo.cs +++ b/MediaBrowser.Model/Updates/InstallationInfo.cs @@ -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; } } } |
