CPF/CPF.Mac/Mac/Foundation/NSJsonReadingOptions.cs

13 lines
178 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
[Flags]
public enum NSJsonReadingOptions : ulong
{
MutableContainers = 0x1,
MutableLeaves = 0x2,
AllowFragments = 0x4
}
}