aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/EndPointInfo.cs
blob: 034734a9e143f86bfcd142e5b2f0648aee6e06f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma warning disable CS1591

namespace MediaBrowser.Model.Net
{
    public class EndPointInfo
    {
        public bool IsLocal { get; set; }

        public bool IsInNetwork { get; set; }
    }
}