debian-mirror-gitlab/lib/gitlab/alerting/alert_annotation.rb
2020-03-13 15:44:24 +05:30

12 lines
176 B
Ruby

# frozen_string_literal: true
module Gitlab
module Alerting
class AlertAnnotation
include ActiveModel::Model
attr_accessor :label, :value
end
end
end