samples/model.ymi
author Volker Birk <vb@pep-project.org>
Sat, 12 Oct 2019 15:56:01 +0200
changeset 37 a5e211c3fae3
parent 0 76005e62091d
permissions -rw-r--r--
documentation
decl package +name;
decl class +name;
decl attr +type +name;

package Bla {
    class Customer {
        attr long id;
        attr string name;
    }
    class Order {
        attr long id;
        attr string desc;
    }
}