10 lines
257 B
C#
Raw Permalink Normal View History

2024-04-27 14:51:54 -04:00
using System.Collections.Generic;
namespace SPTInstaller.Models.Mirrors;
public class PatchInfo
{
public int SourceClientVersion { get; set; }
public int TargetClientVersion { get; set; }
public List<PatchInfoMirror> Mirrors { get; set; }
}