15 lines
304 B
C#
15 lines
304 B
C#
using System;
|
|
using toast_mcl;
|
|
|
|
namespace toast_mcl.Config;
|
|
|
|
public class ConfigSettings
|
|
{
|
|
public AppSettings ?AppSettings { get; set; }
|
|
}
|
|
|
|
public class AppSettings
|
|
{
|
|
public Version Version { get; set; } = Base.Version;
|
|
public string VersionType { get; set; } = Base.VersionType.ToString();
|
|
} |