mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-12 23:09:03 +01:00
11 lines
269 B
Ruby
11 lines
269 B
Ruby
# frozen_string_literal: true
|
|
|
|
# This is a statistical data saved in ElasticSearch, about a machine reservation
|
|
class Stats::Machine
|
|
include Elasticsearch::Persistence::Model
|
|
include StatConcern
|
|
include StatReservationConcern
|
|
|
|
attribute :machineId, Integer
|
|
end
|