13 lines
281 B
C#
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; }
|
|
}
|
|
}
|