package contentmanagement.datastructures.tree


trait TreePosition {
  def isRoot: Boolean
  def level: Int
  
}
