using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OllamaStudy.UseHttpClient.OllamaResponse { public class ListModelResponse { [JsonPropertyName("models")] public List Models { get; set; } = new List(); } }