mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
20 lines
425 B
C#
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; }
|
|
}
|
|
}
|