using HyperbolicDownloaderApi.Networking; namespace HyperbolicDownloaderApi.FileProcessing; public class PublicHyperFileInfo { public string Hash { get; set; } = string.Empty; public List Hosts { get; set; } = new(); public PublicHyperFileInfo() { } public PublicHyperFileInfo(string hash) { Hash = hash; } public PublicHyperFileInfo(string hash, List hosts) { Hash = hash; Hosts = hosts; } }