14 lines
239 B
C#
14 lines
239 B
C#
namespace UniJSON
|
|
{
|
|
public interface IValueNode
|
|
{
|
|
bool IsNull { get; }
|
|
|
|
bool IsArray { get; }
|
|
bool IsMap { get; }
|
|
int Count { get; }
|
|
|
|
object GetValue();
|
|
bool GetBoolean();
|
|
}
|
|
}
|