Re: Properly create Enumerations whose values need to be managed as well??

Posted by Jiba on
URL: http://owlready.306.s1.nabble.com/Properly-create-Enumerations-whose-values-need-to-be-managed-as-well-tp2174p2189.html

Hi,

It seems correct to me. I would just change:

class AUD(Thing or DataProperty?):
class CHF(Thing or DataProperty?):

with:

class AUD(Currency):
class CHF(Currency):

Jiba