mirror of
https://github.com/sp-tarkov/installer.git
synced 2025-02-13 09:50:45 -05:00
10 lines
257 B
C#
10 lines
257 B
C#
|
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; }
|
|||
|
}
|