mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-09-29 15:31:04 -04:00
9 lines
167 B
C#
9 lines
167 B
C#
namespace MediaBrowser.Model.Net
|
|
{
|
|
public class EndPointInfo
|
|
{
|
|
public bool IsLocal { get; set; }
|
|
public bool IsInNetwork { get; set; }
|
|
}
|
|
}
|