aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IStartupOptions.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2021-10-03 17:13:39 +0200
committerGitHub <noreply@github.com>2021-10-03 17:13:39 +0200
commit6a575b3f77d2d1a304bb8b80e09d2b26b50bba5d (patch)
treeafe75e3fc44f80c862e981268deaf771199d239a /Emby.Server.Implementations/IStartupOptions.cs
parentc60428f869fec7cc0c407ec58a4a111e2908a63d (diff)
parent21007aec2038b88734ae19287081bcb1b04f6300 (diff)
Merge pull request #6648 from barronpm/implementations-warn1
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
-rw-r--r--Emby.Server.Implementations/IStartupOptions.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs
index 1d97882db..3769ae4dd 100644
--- a/Emby.Server.Implementations/IStartupOptions.cs
+++ b/Emby.Server.Implementations/IStartupOptions.cs
@@ -1,7 +1,8 @@
-#pragma warning disable CS1591
-
namespace Emby.Server.Implementations
{
+ /// <summary>
+ /// Specifies the contract for server startup options.
+ /// </summary>
public interface IStartupOptions
{
/// <summary>
@@ -10,7 +11,7 @@ namespace Emby.Server.Implementations
string? FFmpegPath { get; }
/// <summary>
- /// Gets a value value indicating whether to run as service by the --service command line option.
+ /// Gets a value indicating whether to run as service by the --service command line option.
/// </summary>
bool IsService { get; }