0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00

13 lines
332 B
C#
Raw Permalink Normal View History

2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Models.SPT
2023-08-13 20:49:03 -04:00
{
2024-05-21 20:15:19 +01:00
public class SPTMod
2023-08-13 20:49:03 -04:00
{
public bool InServer { get; set; }
public bool InProfile { get; set; }
public string Author { get; set; }
public string Name { get; set; }
public string Version { get; set; }
2024-01-26 21:46:39 -05:00
public string Url { get; set; }
2023-08-13 20:49:03 -04:00
}
}