mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 08:50:43 -05:00
13 lines
332 B
C#
13 lines
332 B
C#
namespace SPT.Launcher.Models.SPT
|
|
{
|
|
public class SPTMod
|
|
{
|
|
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; }
|
|
public string Url { get; set; }
|
|
}
|
|
}
|