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

9 lines
192 B
C#

using System.Collections.Generic;
namespace SPTInstaller.Models;
public class InstallerInfo
{
public string LatestVersion { get; set; }
public List<string> Changes { get; set; }
}