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 Normal View History

2023-08-13 20:49:03 -04:00
namespace Aki.Launcher.Models.Aki
{
public class AkiMod
{
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
}
}