dotnet-dynamic-linq/PoweredSoft.DynamicLinq.Test/GetCoreContext.cs
2019-11-11 18:37:14 -06:00

12 lines
202 B
C#

namespace PoweredSoft.DynamicLinq.Test
{
internal class GetCoreContext
{
private string v;
public GetCoreContext(string v)
{
this.v = v;
}
}
}