aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/SystemInfo.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-15 00:23:07 -0400
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-15 00:23:07 -0400
commitb86a03bbdcca3c03b2cd880e607472bc7b3d0850 (patch)
tree9dab0b735ba72aceb904f599142f0e3f59cad4bd /MediaBrowser.Model/System/SystemInfo.cs
parent064b3d58cc4cec91743fc48b4605a6acb1942448 (diff)
Added an Id property to SystemInfo
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
-rw-r--r--MediaBrowser.Model/System/SystemInfo.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs
index 7ae92294b..20716ecc5 100644
--- a/MediaBrowser.Model/System/SystemInfo.cs
+++ b/MediaBrowser.Model/System/SystemInfo.cs
@@ -1,5 +1,6 @@
using MediaBrowser.Model.Updates;
using ProtoBuf;
+using System;
namespace MediaBrowser.Model.System
{
@@ -62,6 +63,14 @@ namespace MediaBrowser.Model.System
/// Gets or sets plugin assemblies that failed to load.
/// </summary>
/// <value>The failed assembly loads.</value>
+ [ProtoMember(8)]
public string[] FailedPluginAssemblies { get; set; }
+
+ /// <summary>
+ /// Gets or sets the id.
+ /// </summary>
+ /// <value>The id.</value>
+ [ProtoMember(9)]
+ public Guid Id { get; set; }
}
}