view Implab/Formats/JSON/JSONElementContext.cs @ 220:42814145d472 v2

.csproj changes
author cin
date Tue, 20 Jun 2017 19:45:52 +0300
parents c32688129f14
children
line wrap: on
line source

namespace Implab.Formats.JSON {
    /// <summary>
    /// internal
    /// </summary>
    enum JSONElementContext {
        None,
        Object,
        Array,
        Closed
    }
}