change controller project targeting

This commit is contained in:
Luke Pulverenti
2016-10-25 21:57:58 -04:00
parent 23d7afdf68
commit 675b643115
10 changed files with 69 additions and 17502 deletions

View 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;
}
}
}