Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alert_annotation.rb « alerting « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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