1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-12 23:09:03 +01:00
fab-manager/app/models/stats/machine.rb
2022-08-29 17:34:09 +02:00

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