20 lines
387 B
C#
20 lines
387 B
C#
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()
|
|
},
|
|
};
|
|
}
|
|
} |