using ryCommon;
using ryCommonDb;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using static ryCommonDb.DataProvider;
namespace Itrycn_Project
{
///
/// 配置类,保存在运行期间不会被改变的配置信息(本系统基于乘黄V2架构)
///
public static class Soft_Info
{
///
/// 在线升级配置文件的url
///
public const string Update_Url = "http://www.itrycn.com/update/ryWebMon4.xml";
///
/// 软件标题
///
public const string Soft_Title = "VSoft";
///
/// 软件ID
///
#if TEST
public const string Soft_Id = "VSoft_Test";
#else
public const string Soft_Id = "VSoft";
#endif
///
/// 开机启动的参数
///
public const string Soft_Pram = "q";
///
/// 官网地址
///
public const string Soft_Url = "http://www.itrycn.com";
///
/// 售后QQ群
///
public const string QQ_Qun = "183161992";
///
/// 关于界面内容.
///
public const string AboutText = "#softname# #ver#";
///
/// 用户文件夹,该相对路径设置,将在程序启动后转换
///
public static string UserDataFolder = @"\UserDb";
///
/// 是否允许显示托盘图标
///
public static bool ShowTray { get; } = true;
///
/// 是否显示捐赠方式
///
public static bool DonateVisabled { get; } = true;
}
}