-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathModMetaData.cs
More file actions
18 lines (16 loc) · 812 Bytes
/
Copy pathModMetaData.cs
File metadata and controls
18 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace RefFriendlyQuests;
using SPTarkov.Server.Core.Models.Spt.Mod;
public record ModMetadata : IModMetadata
{
public string ModGuid { get; init; } = "com.acidphantasm.reffriendlyquests";
public string Name { get; init; } = "Ref Friendly Quests";
public string Author { get; init; } = "acidphantasm";
public List<string>? Contributors { get; init; }
public SemanticVersioning.Version Version { get; init; } = new("2.1.0");
public SemanticVersioning.Range SptVersion { get; init; } = new("~4.1.0");
public List<string>? Incompatibilities { get; init; }
public Dictionary<string, SemanticVersioning.Range>? ModDependencies { get; init; }
public string? Url { get; init; }
public bool HasPrepatcher { get; init; }
public string License { get; init; } = "MIT";
}