aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/EndPointInfo.cs
blob: 5a158e78597a624e45f2eed539de6628b620067e (plain)
1
2
3
4
5
6
7
8
namespace MediaBrowser.Model.Net
{
    public class EndPointInfo
    {
        public bool IsLocal { get; set; }
        public bool IsInNetwork { get; set; }
    }
}