Added recipe statistics model

Necessary to model the statistics of the response. Will soon be used by the recipe model (soon to be used).

Milestone: minor
This commit is contained in:
Brooke Kuhlmann
2026-01-15 09:18:33 -07:00
parent d4209e5f01
commit 097d77369d
@@ -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