2using System.Collections.Generic;
4using System.Threading.Tasks;
8public enum XRepoPlatform
59public record XRepoPlatformArch(XRepoPlatform Platform, XRepoArch Arch)
61 public XRepoPlatformArch(
string platform,
string arch)
62 : this(Enum.Parse<XRepoPlatform>(platform), XRepoUtils.GetArch(arch)) {}