14 lines
224 B
C#
Raw Normal View History

2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore
{
public class Dvar<T>
{
public string Name { get; private set; }
public T Value;
public Dvar(string name)
{
Name = name;
}
}
}