summaryrefslogtreecommitdiff
path: root/lib/api/entities/custom_attribute.rb
blob: f949b7095175f891bf074488cdcc612ff5d97938 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module API
  module Entities
    class CustomAttribute < Grape::Entity
      expose :key
      expose :value
    end
  end
end