2018-10-07 17:29:56 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
class ProtocolKeywordSerializer < ActiveModel::Serializer
|
|
|
|
type :protocol_keywords
|
|
|
|
attributes :id, :name
|
2021-08-18 16:00:01 +08:00
|
|
|
|
|
|
|
include TimestampableModel
|
2018-10-07 17:29:56 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|