From b86a03bbdcca3c03b2cd880e607472bc7b3d0850 Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Fri, 15 Mar 2013 00:23:07 -0400 Subject: Added an Id property to SystemInfo --- MediaBrowser.Model/System/SystemInfo.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'MediaBrowser.Model/System') 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. /// /// The failed assembly loads. + [ProtoMember(8)] public string[] FailedPluginAssemblies { get; set; } + + /// + /// Gets or sets the id. + /// + /// The id. + [ProtoMember(9)] + public Guid Id { get; set; } } } -- cgit v1.2.3