lib/immudb/schemas/entry_count.ex

defmodule Immudb.Schemas.EntryCount do
  @type t :: %__MODULE__{
          count: integer()
        }
  defstruct count: nil
end