PropertyMetadata.cs 187 B

1234567891011121314
  1. using System;
  2. using System.Reflection;
  3. namespace LitJson
  4. {
  5. internal struct PropertyMetadata
  6. {
  7. public MemberInfo Info;
  8. public bool IsField;
  9. public Type Type;
  10. }
  11. }