fix a few issues with the plugin manifest

This commit is contained in:
dkanada
2020-05-24 15:04:10 +09:00
parent 777c9c7bc9
commit 7972daaba4
7 changed files with 111 additions and 131 deletions

View File

@@ -7,23 +7,11 @@ namespace MediaBrowser.Model.Updates
/// </summary>
public class VersionInfo
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string name { get; set; }
/// <summary>
/// Gets or sets the guid.
/// </summary>
/// <value>The guid.</value>
public string guid { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public Version version { get; set; }
public string version { get; set; }
/// <summary>
/// Gets or sets the changelog for this version.
@@ -48,11 +36,5 @@ namespace MediaBrowser.Model.Updates
/// </summary>
/// <value>The checksum.</value>
public string checksum { get; set; }
/// <summary>
/// Gets or sets the target filename for the downloaded binary.
/// </summary>
/// <value>The target filename.</value>
public string filename { get; set; }
}
}