11 lines
280 B
C#
Raw Normal View History

2018-04-08 01:44:42 -05:00
namespace SharedLibraryCore
{
public class Dvar<T>
{
2019-02-01 19:49:25 -06:00
public string Name { get; set; }
public T Value { get; set; }
public T DefaultValue { get; set; }
public T LatchedValue { get; set; }
public string Domain { get; set; }
}
2022-01-26 10:32:16 -06:00
}