Files
flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/EnumInNestedNS.cs
2020-02-04 00:49:17 +09:00

20 lines
346 B
C#

// <auto-generated>
// automatically generated by the FlatBuffers compiler, do not modify
// </auto-generated>
namespace NamespaceA.NamespaceB
{
#if ENABLE_JSON_SERIALIZATION
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))]
#endif
public enum EnumInNestedNS : sbyte
{
A = 0,
B = 1,
C = 2,
};
}