namespace NeXt.Vdf { /// /// A VdfValue that represents an integer /// 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; } } }