From a86b71899ec52c44ddc6c3018e8cc5e9d7ff4d62 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Thu, 27 Dec 2018 18:27:57 -0500 Subject: Add GPL modules --- MediaBrowser.Model/System/PublicSystemInfo.cs | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 MediaBrowser.Model/System/PublicSystemInfo.cs (limited to 'MediaBrowser.Model/System/PublicSystemInfo.cs') diff --git a/MediaBrowser.Model/System/PublicSystemInfo.cs b/MediaBrowser.Model/System/PublicSystemInfo.cs new file mode 100644 index 000000000..b9a3260b0 --- /dev/null +++ b/MediaBrowser.Model/System/PublicSystemInfo.cs @@ -0,0 +1,41 @@ +namespace MediaBrowser.Model.System +{ + public class PublicSystemInfo + { + /// + /// Gets or sets the local address. + /// + /// The local address. + public string LocalAddress { get; set; } + + /// + /// Gets or sets the wan address. + /// + /// The wan address. + public string WanAddress { get; set; } + + /// + /// Gets or sets the name of the server. + /// + /// The name of the server. + public string ServerName { get; set; } + + /// + /// Gets or sets the version. + /// + /// The version. + public string Version { get; set; } + + /// + /// Gets or sets the operating sytem. + /// + /// The operating sytem. + public string OperatingSystem { get; set; } + + /// + /// Gets or sets the id. + /// + /// The id. + public string Id { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3