ubpb/metacrunch-marcxml

View on GitHub
lib/metacrunch/marcxml/record/leader.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Metacrunch
  module Marcxml
    class Record
      class Leader

        attr_accessor :value

        def initialize(value = nil)
          @value = value
        end

      end
    end
  end
end