File size: 314 Bytes
fab29d7 | 1 2 3 4 5 6 7 8 9 10 | namespace VersOne.Epub.Test.Integration.JsonUtils
{
internal static class Constants
{
public const string TYPE_PROPERTY_NAME = "$type";
public const string NEW_REFERENCE_NUMBER_PROPERTY_NAME = "$id";
public const string DUPLICATE_REFERENCE_NUMBER_PROPERTY_NAME = "$ref";
}
}
|