mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
16 lines
396 B
C#
16 lines
396 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Wabbajack.DTOs.GitHub
|
||
|
{
|
||
|
public static class PathNames
|
||
|
{
|
||
|
public static Dictionary<List, string> FromList = new()
|
||
|
{
|
||
|
{List.CI, "ci_lists.json"},
|
||
|
{List.Unlisted, "unlisted_modlists.json"},
|
||
|
{List.Utility, "utility_modlists.json"},
|
||
|
{List.Published, "modlists.json"}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
}
|