File size: 252 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace VersOne.Epub.Test.Integration.JsonUtils.Configuration
{
    [Flags]
    internal enum PropertyDefaultValue
    {
        NULL = 1,
        FALSE = 2,
        EMPTY_ARRAY = 4,
        EMPTY_OBJECT = 8,
        EMPTY_DICTIONARY = 16
    }
}