toast_mcl/Programs/Config/DefaultConfig.cs

20 lines
387 B
C#
Raw Normal View History

2024-07-15 17:02:53 +08:00
using System;
using toast_mcl;
namespace toast_mcl.Config;
public static class DefaultConfig
{
public static ConfigSettings GetDefaultConfig()
{
return new ConfigSettings
{
AppSettings = new AppSettings
{
Version = Base.Version,
VersionType = Base.VersionType.ToString()
},
};
}
}