using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OllamaStudy.UseHttpClient.OllamaResponse { public class ResponseModel: ResponseBase { public DateTime modified_at { get; set; } public long size { get; set; } public string? digest { get; set; } public ResponseModelDetails? details { get; set; } } public class ResponseModelDetails { public string? parent_model { get; set; } public string? format { get; set; } public List? families { get; set; } public string? parameter_size { get; set; } public string? quantization_level { get; set; } } }