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