Sha256: a90bc0aec5676277ac896465f5de32192f2d7868d3a161b1f5819c298e9165d2

Contents?: true

Size: 766 Bytes

Versions: 7

Compression:

Stored size: 766 Bytes

Contents

# frozen_string_literal: true

# :nodoc:
module Zakuro
  #
  # Result 演算結果
  #
  module Result
    #
    # 運用情報
    #
    class Operation
      #
      # Month 運用情報(月)
      #
      class Month
        #
        # Annotation 注釈
        #
        class Annotation
          # @return [String] 注釈内容
          attr_reader :description
          # @return [String] 注釈補記
          attr_reader :note

          #
          # 初期化
          #
          # @param [String] description 注釈内容
          # @param [<Type>] note 注釈補記
          #
          def initialize(description:, note:)
            @description = description
            @note = note
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
zakuro-1.0.0 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.9.4 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.9.3 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.9.2 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.9.1 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.9.0 lib/zakuro/result/operation/month/annotation.rb
zakuro-0.8.0 lib/zakuro/result/operation/month/annotation.rb