jellyfin/MediaBrowser.Model/Updates/InstallationInfo.cs

29 lines
656 B
C#
Raw Normal View History

using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Updates
{
/// <summary>
2020-02-04 01:49:27 +01:00
/// Class InstallationInfo.
2018-12-28 00:27:57 +01:00
/// </summary>
public class InstallationInfo
{
/// <summary>
/// Gets or sets the guid.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value>The guid.</value>
public string Guid { get; set; }
2018-12-28 00:27:57 +01:00
/// <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; }
}
}