You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Updates/InstallationInfo.cs

29 lines
656 B

using System;
6 years ago
namespace MediaBrowser.Model.Updates
{
/// <summary>
/// Class InstallationInfo.
6 years ago
/// </summary>
public class InstallationInfo
{
/// <summary>
/// Gets or sets the guid.
6 years ago
/// </summary>
/// <value>The guid.</value>
public string Guid { get; set; }
6 years ago
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
public string Version { get; set; }
}
}