mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-02 05:48:47 +01:00
change controller project targeting
This commit is contained in:
15
MediaBrowser.Model/Net/IpAddressInfo.cs
Normal file
15
MediaBrowser.Model/Net/IpAddressInfo.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Net
|
||||
{
|
||||
public class IpAddressInfo
|
||||
{
|
||||
public string Address { get; set; }
|
||||
public bool IsIpv6 { get; set; }
|
||||
|
||||
public override String ToString()
|
||||
{
|
||||
return Address;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user