blob: 7c0797086c0f92f6d842f6d1f71d9f0fa333ad31 [file] [log] [blame]
//
// Copyright (c) 2010-2018 Antmicro
//
// This file is licensed under the MIT License.
// Full license text is available in 'licenses/MIT.txt'.
//
namespace Antmicro.Renode.PlatformDescription.Syntax
{
public sealed class NumericalValue : Value
{
public NumericalValue(string value)
{
Value = value;
}
public override string ToString()
{
return string.Format("[NumericalValue: {0}]", Value);
}
public string Value { get; private set; }
}
}