12 lines
209 B
Ruby
12 lines
209 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module ErrorTracking
|
||
|
class ErrorEvent
|
||
|
include ActiveModel::Model
|
||
|
|
||
|
attr_accessor :issue_id, :date_received, :stack_trace_entries
|
||
|
end
|
||
|
end
|
||
|
end
|