ServerManagers/src/NeXtVdf/VdfLong.cs
2021-01-07 16:23:23 +10:00

20 lines
425 B
C#

namespace NeXt.Vdf
{
/// <summary>
/// A VdfValue that represents an integer
/// </summary>
public sealed class VdfLong : VdfValue
{
public VdfLong(string name) : base(name)
{
Type = VdfValueType.Long;
}
public VdfLong(string name, long value) : this(name)
{
Content = value;
}
public long Content { get; set; }
}
}