11 lines
184 B
Ruby
11 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
module API
|
|
module Entities
|
|
module JobRequest
|
|
class Port < Grape::Entity
|
|
expose :number, :protocol, :name
|
|
end
|
|
end
|
|
end
|
|
end
|