aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Updates/VersionInfo.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-21 15:12:04 -0600
committercrobibero <cody@robibe.ro>2020-04-21 15:12:04 -0600
commit14c94b4e5f6fd7e9ed3483bc2d582f68f8a21c67 (patch)
treef5082cbda8d5f207bd00cf06f4f4e32f05c127e9 /MediaBrowser.Model/Updates/VersionInfo.cs
parentfff2a40ffc4e5010b26143185c68d221225c1a22 (diff)
parenta2f19eadf739297cbbc99c9082b0175e8b881054 (diff)
Merge branch 'api-migration' of https://github.com/jellyfin/jellyfin into redoc
Diffstat (limited to 'MediaBrowser.Model/Updates/VersionInfo.cs')
-rw-r--r--MediaBrowser.Model/Updates/VersionInfo.cs58
1 files changed, 58 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Updates/VersionInfo.cs b/MediaBrowser.Model/Updates/VersionInfo.cs
new file mode 100644
index 000000000..fe5826ad2
--- /dev/null
+++ b/MediaBrowser.Model/Updates/VersionInfo.cs
@@ -0,0 +1,58 @@
+using System;
+
+namespace MediaBrowser.Model.Updates
+{
+ /// <summary>
+ /// Class PackageVersionInfo.
+ /// </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; }
+
+ /// <summary>
+ /// Gets or sets the changelog for this version.
+ /// </summary>
+ /// <value>The changelog.</value>
+ public string changelog { get; set; }
+
+ /// <summary>
+ /// Gets or sets the ABI that this version was built against.
+ /// </summary>
+ /// <value>The target ABI version.</value>
+ public string targetAbi { get; set; }
+
+ /// <summary>
+ /// Gets or sets the source URL.
+ /// </summary>
+ /// <value>The source URL.</value>
+ public string sourceUrl { get; set; }
+
+ /// <summary>
+ /// Gets or sets a checksum for the binary.
+ /// </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; }
+ }
+}