wabbajack/Wabbajack.DTOs/GitHub/PathNames.cs

14 lines
353 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.DTOs.GitHub;
public static class PathNames
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
public static Dictionary<List, string> FromList = new()
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
{List.CI, "ci_lists.json"},
{List.Unlisted, "unlisted_modlists.json"},
{List.Utility, "utility_modlists.json"},
{List.Published, "modlists.json"}
};
2021-09-27 12:42:46 +00:00
}