# frozen_string_literal: true module Niso module Jats class EquationCount < Lutaml::Model::Serializable attribute :count, :string attribute :id, :string xml do root "equation-count" map_attribute "count", to: :count map_attribute "id", to: :id end end end end