aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-09 16:27:30 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-01-10 12:42:09 -0500
commitd05f32d1b66312d022af5a7c212cc63a4662a314 (patch)
tree8a393669eeaa061ace2cf3fc5cdc206223841ad4 /MediaBrowser.Model
parentb5bfb46760acfe48d3773b194bd62df7407f7159 (diff)
add EndPointInfo class
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/MediaBrowser.Model.csproj1
-rw-r--r--MediaBrowser.Model/Net/EndPointInfo.cs8
2 files changed, 9 insertions, 0 deletions
diff --git a/MediaBrowser.Model/MediaBrowser.Model.csproj b/MediaBrowser.Model/MediaBrowser.Model.csproj
index 3664175d8e..db278baa14 100644
--- a/MediaBrowser.Model/MediaBrowser.Model.csproj
+++ b/MediaBrowser.Model/MediaBrowser.Model.csproj
@@ -162,6 +162,7 @@
<Compile Include="MediaInfo\MediaProtocol.cs" />
<Compile Include="MediaInfo\SubtitleTrackEvent.cs" />
<Compile Include="MediaInfo\SubtitleTrackInfo.cs" />
+ <Compile Include="Net\EndPointInfo.cs" />
<Compile Include="Net\HttpResponse.cs" />
<Compile Include="Net\MimeTypes.cs" />
<Compile Include="Notifications\NotificationOption.cs" />
diff --git a/MediaBrowser.Model/Net/EndPointInfo.cs b/MediaBrowser.Model/Net/EndPointInfo.cs
new file mode 100644
index 0000000000..5a158e7859
--- /dev/null
+++ b/MediaBrowser.Model/Net/EndPointInfo.cs
@@ -0,0 +1,8 @@
+namespace MediaBrowser.Model.Net
+{
+ public class EndPointInfo
+ {
+ public bool IsLocal { get; set; }
+ public bool IsInNetwork { get; set; }
+ }
+}