0
0
mirror of https://github.com/sp-tarkov/installer.git synced 2025-02-13 08:30:46 -05:00
installer/SPTInstaller/Models/InstallerInfo.cs

9 lines
192 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace SPTInstaller.Models;
2024-05-01 10:32:22 -04:00
public class InstallerInfo
{
public string LatestVersion { get; set; }
public List<string> Changes { get; set; }
2024-05-01 10:32:22 -04:00
}