12 lines
176 B
Ruby
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
|