samples/model.ymi
author Hartmut Goebel <h.goebel@crazy-compilers.com>
Thu, 19 Mar 2020 10:47:36 +0100
changeset 63 37d51c3abaae
parent 0 76005e62091d
permissions -rw-r--r--
Release 2.6.3
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;
    }
}