about summary refs log tree commit diff
path: root/app/lib/admin/system_check/message.rb
blob: bfcad3bf3d00a65b07f9850c7b5c0e2cd6c951c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Admin::SystemCheck::Message
  attr_reader :key, :value, :action

  def initialize(key, value = nil, action = nil)
    @key    = key
    @value  = value
    @action = action
  end
end