model OneToManyTest
class Mentor
attributes
name : String
end
class Student
attributes
number : String
end
class Bank
attributes
name : String
end
class BankOfStuff
attributes
number : String
end
association Mentor__Student between
Mentor[1]
Student[*]
end
association Bank__BankOfStuff between
Bank[1]
BankOfStuff[*]
end