diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-07 11:58:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-07 11:58:47 -0400 |
| commit | 730c62818ed93ac4bc90b04665196675be1361de (patch) | |
| tree | 2d24d55d0358b11838cb834d21cf44d838a56e1a /MediaBrowser.Model/System | |
| parent | 0d599415392d1248c6925134fc0da7fa5049ddc8 (diff) | |
add http server port number to system info
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index e605a5daa..959ec44c8 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -72,7 +72,13 @@ namespace MediaBrowser.Model.System /// </summary> /// <value>The program data path.</value> public string ProgramDataPath { get; set; } - + + /// <summary> + /// Gets or sets the HTTP server port number. + /// </summary> + /// <value>The HTTP server port number.</value> + public int HttpServerPortNumber { get; set; } + /// <summary> /// Initializes a new instance of the <see cref="SystemInfo"/> class. /// </summary> |
