blob: 5acc1a02ca5b82929e99dfad827535d7061604f0 [file] [log] [blame]
@namespace(uri="pdl", prefix="")
package pdl;
class Project {
attr String title;
val Deliverable[*] deliverables;
}
class Deliverable {
attr String title;
attr int due;
ref Person lead;
}
class Person {
attr String name;
}