diff --git a/lib/trmnl/api/models/recipes/statistics.rb b/lib/trmnl/api/models/recipes/statistics.rb new file mode 100644 index 0000000..d4c9d30 --- /dev/null +++ b/lib/trmnl/api/models/recipes/statistics.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +module TRMNL + module API + module Models + module Recipes + # Models the statistics of the API response. + Statistics = Data.define :installs, :forks + end + end + end +end