14 lines
282 B
C#
14 lines
282 B
C#
|
|
namespace UtilLib
|
|
{
|
|
public class AppConfig
|
|
{
|
|
public string AppUrl { get; set; }
|
|
public bool AppRunInDebug { get; set; }
|
|
/// <summary>
|
|
/// dev | test | product
|
|
/// </summary>
|
|
public string Environment { get; set; }
|
|
}
|
|
}
|