33 lines
391 B
C#
33 lines
391 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Collections.Generic;
|
|
|
|
|
|
namespace UniJSON
|
|
{
|
|
[Flags]
|
|
public enum PropertyExportFlags
|
|
{
|
|
None,
|
|
PublicFields = 1,
|
|
PublicProperties = 2,
|
|
|
|
Default = PublicFields | PublicProperties,
|
|
}
|
|
|
|
public enum CompositionType
|
|
{
|
|
Unknown,
|
|
|
|
AllOf,
|
|
AnyOf,
|
|
OneOf,
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|