gitlab-org--gitlab-foss/lib/gitlab/alerting/alert_annotation.rb

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