dotnet-dynamic-linq/PoweredSoft.DynamicLinq.Test/GetCoreContext.cs

12 lines
202 B
C#
Raw Normal View History

2019-11-11 19:37:14 -05:00
namespace PoweredSoft.DynamicLinq.Test
{
internal class GetCoreContext
{
private string v;
public GetCoreContext(string v)
{
this.v = v;
}
}
}