File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Smdn.Net.MuninNode/Smdn.Net.MuninNode.Protocol Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public interface IMuninNodeProfile {
19
19
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
20
20
/// Data exchange between master and node - `node` command
21
21
/// </seealso>
22
- public string HostName { get ; }
22
+ string HostName { get ; }
23
23
24
24
/// <summary>
25
25
/// Gets the string representing the version information of the node.
@@ -30,7 +30,7 @@ public interface IMuninNodeProfile {
30
30
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
31
31
/// Data exchange between master and node - `version` command
32
32
/// </seealso>
33
- public string Version { get ; }
33
+ string Version { get ; }
34
34
35
35
/// <summary>
36
36
/// Gets the <see cref="IPluginProvider"/> representing the munin plugins provided by the node.
@@ -41,10 +41,10 @@ public interface IMuninNodeProfile {
41
41
/// <seealso href="https://guide.munin-monitoring.org/en/latest/master/network-protocol.html">
42
42
/// Data exchange between master and node - `list`, `config` and `fetch` command
43
43
/// </seealso>
44
- public IPluginProvider PluginProvider { get ; }
44
+ IPluginProvider PluginProvider { get ; }
45
45
46
46
/// <summary>
47
47
/// Gets the <see cref="Encoding"/> used for data exchange with the <c>munin master</c>.
48
48
/// </summary>
49
- public Encoding Encoding { get ; }
49
+ Encoding Encoding { get ; }
50
50
}
You can’t perform that action at this time.
0 commit comments