IW4M-Admin/SharedLibraryCore/Dvar.cs

11 lines
280 B
C#
Raw Normal View History

2018-04-08 02:44:42 -04:00
namespace SharedLibraryCore
{
public class Dvar<T>
{
2019-02-01 20:49:25 -05: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 11:32:16 -05:00
}