2024-09-04 23:05:14 +08:00

13 lines
281 B
C#

namespace updater
{
public class AppConfig
{
public string AppUrl { get; set; }
public bool AppRunInDebug { get; set; }
/// <summary>
/// dev | test | product
/// </summary>
public string Environment { get; set; }
}
}