summaryrefslogtreecommitdiff
path: root/lib/api/entities/nuget/dependency.rb
blob: b61c37f58827c6a186b57416e888e5c050c7a83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module API
  module Entities
    module Nuget
      class Dependency < Grape::Entity
        expose :id, as: :@id
        expose :type, as: :@type
        expose :name, as: :id
        expose :range
      end
    end
  end
end