10 lines
193 B
Ruby
10 lines
193 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module API
|
||
|
module Entities
|
||
|
class LabelBasic < Grape::Entity
|
||
|
expose :id, :name, :color, :description, :description_html, :text_color
|
||
|
end
|
||
|
end
|
||
|
end
|