using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OllamaStudy.UseHttpClient.OllamaResponse { /// /// 响应版本 /// public class ResponseOllamaVersion { public string? Version { get; set; } public Version ToSystemVersion() { return new Version(Version ?? "0.0.0"); } } }