mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
20 lines
435 B
C#
20 lines
435 B
C#
namespace NeXt.Vdf
|
|
{
|
|
/// <summary>
|
|
/// A VdfValue that represents a string
|
|
/// </summary>
|
|
public sealed class VdfString : VdfValue
|
|
{
|
|
public VdfString(string name) : base(name)
|
|
{
|
|
Type = VdfValueType.String;
|
|
}
|
|
|
|
public VdfString(string name, string value) : this(name)
|
|
{
|
|
Content = value;
|
|
}
|
|
|
|
public string Content { get; set; }
|
|
}
|
|
}
|