samples/model.ymi
author Volker Birk <vb@pep-project.org>
Mon, 04 Nov 2019 11:36:06 +0100
changeset 38 90d687cbe277
parent 0 76005e62091d
permissions -rw-r--r--
explicitely name match attribute
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;
    }
}