Sha256: fbc8897ff8c7142ae6b06cdefa891f8e0fe351fecc2ff324550792c312007587
Contents?: true
Size: 300 Bytes
Versions: 25
Compression:
Stored size: 300 Bytes
Contents
# frozen_string_literal: true module Lutaml module Model # Comparison of two values for ComparableMapper class Comparison attr_accessor :original, :updated def initialize(original:, updated:) @original = original @updated = updated end end end end
Version data entries
25 entries across 25 versions & 1 rubygems