ResoniteCacheCleaner/Config.cs
2024-10-31 13:42:25 -04:00

11 lines
177 B
C#

namespace ResoniteCacheCleaner
{
public class Config
{
// Delete older than this access time
public int AccessTimeDays = 30;
// DataPath
public string DataPath;
}
}