19 lines
371 B
C#
19 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KssSmaPlaLib.AutoTest.Core
|
|
{
|
|
public static class TestModeUxer
|
|
{
|
|
public static bool IsTestMode { get; private set; }
|
|
|
|
public static void SetTestMode(bool value)
|
|
{
|
|
IsTestMode = value;
|
|
}
|
|
}
|
|
}
|