add EndPointInfo class

This commit is contained in:
Luke Pulverenti
2016-01-09 16:27:30 -05:00
parent d47e19d0e6
commit 18a6cd629c
5 changed files with 18 additions and 8 deletions

View File

@@ -0,0 +1,8 @@
namespace MediaBrowser.Model.Net
{
public class EndPointInfo
{
public bool IsLocal { get; set; }
public bool IsInNetwork { get; set; }
}
}