15 lines
173 B
C#
15 lines
173 B
C#
using System;
|
|
using System.Reflection;
|
|
|
|
namespace LitJson
|
|
{
|
|
internal struct PropertyMetadata
|
|
{
|
|
public MemberInfo Info;
|
|
|
|
public bool IsField;
|
|
|
|
public Type Type;
|
|
}
|
|
}
|