summaryrefslogtreecommitdiff
path: root/lib/gitlab/alerting/alert_annotation.rb
blob: a4b3a97b08c0df71c22c01581e9788eafbc6803d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Gitlab
  module Alerting
    class AlertAnnotation
      include ActiveModel::Model

      attr_accessor :label, :value
    end
  end
end