Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 64a1d30

Browse files
author
Zat
committedApr 3, 2017
Projektdateien hinzufügen.
1 parent 5d95e8c commit 64a1d30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+2569
-0
lines changed
 
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using Newtonsoft.Json;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace GlancesClientSharp.Glances.Plugins
8+
{
9+
[GlancesPluginAttribute("ip")]
10+
public class Ip
11+
{
12+
[JsonProperty(PropertyName = "public_address")]
13+
public string PublicAddress { get; set; }
14+
[JsonProperty(PropertyName = "mask")]
15+
public string Mask { get; set; }
16+
[JsonProperty(PropertyName = "mask_cidr")]
17+
public string MaskCidr { get; set; }
18+
[JsonProperty(PropertyName = "gateway")]
19+
public string Gateway { get; set; }
20+
[JsonProperty(PropertyName = "address")]
21+
public string Address { get; set; }
22+
}
23+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using Newtonsoft.Json;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
7+
namespace GlancesClientSharp.Glances.Plugins
8+
{
9+
[GlancesPluginAttribute("irq", true)]
10+
public class Irq
11+
{
12+
[JsonProperty(PropertyName = "irq_rate")]
13+
public long IrqRate { get; set; }
14+
[JsonProperty(PropertyName = "irq_line")]
15+
public string IrqLine { get; set; }
16+
[JsonProperty(PropertyName = "key")]
17+
public string Key { get; set; }
18+
[JsonProperty(PropertyName = "time_since_update")]
19+
public float TimeSinceUpdate { get; set; }
20+
}
21+
}
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.