Commit 919c3729 authored by justcoding121's avatar justcoding121

make ref internal

parent a740f847
...@@ -6,18 +6,18 @@ using System.Threading.Tasks; ...@@ -6,18 +6,18 @@ using System.Threading.Tasks;
namespace Titanium.Web.Proxy.Helpers namespace Titanium.Web.Proxy.Helpers
{ {
public class Ref<T> internal class Ref<T>
{ {
public Ref() internal Ref()
{ {
} }
public Ref(T value) internal Ref(T value)
{ {
Value = value; Value = value;
} }
public T Value { get; set; } internal T Value { get; set; }
public override string ToString() public override string ToString()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment