package org.kravemir.lightvalue.examples.json;

class Contact {
    string name;
    string email;
}

class GreetingsMessage {
    Contact from;
    Contact to;
}

class TestModel {

    class InnerTest {
        string a;
    }

    class AnotherInner {
        string b;
    }

    bool b;
    int32 i;
    double d;
    string s;

    InnerTest inner1;
    InnerTest inner2;

    AnotherInner inner3;
}

class Empty {
    class WithInner {
        class WithInnerHavingProperty {
            string test;
        }
    }
}