mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
13 lines
178 B
C#
13 lines
178 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSJsonReadingOptions : ulong
|
||
|
{
|
||
|
MutableContainers = 0x1,
|
||
|
MutableLeaves = 0x2,
|
||
|
AllowFragments = 0x4
|
||
|
}
|
||
|
}
|