40 lines
990 B
C#
40 lines
990 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.SqlDb.Test
|
|
{
|
|
public class TestSetup
|
|
{
|
|
public string app { get; set; } = "testApp";
|
|
public string server { get; set; } = "";
|
|
public string user { get; set; } = "";
|
|
public string password { get; set; } = "";
|
|
public string dbName { get; set; } = "MoonPro_IOB_ISF_PAMA";
|
|
public List<singleStep> steps { get; set; }
|
|
}
|
|
|
|
public class singleStep
|
|
{
|
|
public string id { get; set; } = "00";
|
|
public string description { get; set; } = "00";
|
|
public stepType action { get; set; } = stepType.none;
|
|
|
|
public List<string> paramList { get; set; } = new List<string>();
|
|
}
|
|
|
|
public enum stepType
|
|
{
|
|
none,
|
|
dbMigrateAndSync,
|
|
getEvList,
|
|
getFluxLog,
|
|
getSyncState,
|
|
resetPodl,
|
|
setNewPodl,
|
|
procPodl
|
|
}
|
|
}
|