mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-21 16:25:28 +03:00
removed unused attributes
This commit is contained in:
@@ -1,47 +1,40 @@
|
||||
using ProtoBuf;
|
||||
using System;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Updates
|
||||
{
|
||||
/// <summary>
|
||||
/// Class InstallationInfo
|
||||
/// </summary>
|
||||
[ProtoContract]
|
||||
public class InstallationInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the id.
|
||||
/// </summary>
|
||||
/// <value>The id.</value>
|
||||
[ProtoMember(1)]
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
[ProtoMember(2)]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the version.
|
||||
/// </summary>
|
||||
/// <value>The version.</value>
|
||||
[ProtoMember(3)]
|
||||
public string Version { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the update class.
|
||||
/// </summary>
|
||||
/// <value>The update class.</value>
|
||||
[ProtoMember(4)]
|
||||
public PackageVersionClass UpdateClass { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the percent complete.
|
||||
/// </summary>
|
||||
/// <value>The percent complete.</value>
|
||||
[ProtoMember(5)]
|
||||
public double? PercentComplete { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user