35 lines
1.2 KiB
C#
35 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace GeneralApi.IntegrationUtility.Common
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static class Logger
|
|
{
|
|
public const string LOGGER_NAME = "GeneralApi.IntegrationUtility.Logger";
|
|
}
|
|
|
|
public static class Settings
|
|
{
|
|
public const string INPUT_FOLDER_SETTING_KEY = "InputFolder";
|
|
public const string ARCHIVE_FOLDER_SETTING_KEY = "ArchiveFolder";
|
|
public const string IGNORE_SSL_WARNING_SETTING_KEY = "IgnoreSSLWarning";
|
|
public const string LOGIN_NAME_SETTING_KEY = "LoginName";
|
|
public const string PASSWORD_SETTING_KEY = "Password";
|
|
public const string MOVE_FILES_TO_ARCHIVE_AFTER_PROCESSING = "MoveFilesToArchiveAfterProcessing";
|
|
}
|
|
|
|
public static class Common
|
|
{
|
|
public const string DEFAULT_INPUT_FOLDER = "Input";
|
|
public const string DEFAULT_ARCHIVE_FOLDER = "Archive";
|
|
public const string XML_EXTENSION = "xml";
|
|
public const string CONDO_PREFIX = "Condo_";
|
|
public const string BOARD_MEMBER_PREFIX = "BoardMember_";
|
|
}
|
|
}
|
|
}
|