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 --- .../ApiClient/ServerDiscoveryInfo.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs (limited to 'MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs') diff --git a/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs b/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs new file mode 100644 index 000000000..e2f780605 --- /dev/null +++ b/MediaBrowser.Model/ApiClient/ServerDiscoveryInfo.cs @@ -0,0 +1,27 @@ + +namespace MediaBrowser.Model.ApiClient +{ + public class ServerDiscoveryInfo + { + /// + /// Gets or sets the address. + /// + /// The address. + public string Address { get; set; } + /// + /// Gets or sets the server identifier. + /// + /// The server identifier. + public string Id { get; set; } + /// + /// Gets or sets the name. + /// + /// The name. + public string Name { get; set; } + /// + /// Gets or sets the endpoint address. + /// + /// The endpoint address. + public string EndpointAddress { get; set; } + } +} -- cgit v1.2.3