Added a config setting to denote completion of the startup wizard

This commit is contained in:
LukePulverenti
2013-03-04 11:56:29 -05:00
parent 05b9500175
commit da535db655
6 changed files with 28 additions and 3 deletions

View File

@@ -65,6 +65,13 @@ namespace MediaBrowser.Model.Configuration
/// <value>The legacy web socket port number.</value>
[ProtoMember(59)]
public int LegacyWebSocketPortNumber { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is first run.
/// </summary>
/// <value><c>true</c> if this instance is first run; otherwise, <c>false</c>.</value>
[ProtoMember(4)]
public bool IsStartupWizardCompleted { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationConfiguration" /> class.