mirror of
https://github.com/sp-tarkov/modules.git
synced 2025-02-13 08:50:43 -05:00
17 lines
389 B
C#
17 lines
389 B
C#
namespace Aki.Custom.Models
|
|
{
|
|
public class BundleInfo
|
|
{
|
|
public string Key { get; }
|
|
public string Path { get; set; }
|
|
public string[] DependencyKeys { get; }
|
|
|
|
public BundleInfo(string key, string path, string[] dependencyKeys)
|
|
{
|
|
Key = key;
|
|
Path = path;
|
|
DependencyKeys = dependencyKeys;
|
|
}
|
|
}
|
|
}
|