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