0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 09:50:45 -05:00
installer/SPTInstaller/Models/DownloadMirror.cs

9 lines
163 B
C#
Raw Normal View History

2023-05-11 23:11:39 -04:00
namespace SPTInstaller.Models
2022-07-11 21:19:47 -04:00
{
public class DownloadMirror
{
public string Link { get; set; }
public string Hash { get; set; }
}
}