You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
776 B
28 lines
776 B
namespace Znyc.Cloudcar.Admin.Commons.Helpers
|
|
{
|
|
/// <summary>
|
|
/// 应用版本号、软件厂商等信息
|
|
/// </summary>
|
|
public class AppVersionHelper
|
|
{
|
|
/// <summary>
|
|
/// 版本号
|
|
/// </summary>
|
|
public const string Version = "3.0";
|
|
|
|
/// <summary>
|
|
/// 软件厂商
|
|
/// </summary>
|
|
public const string Manufacturer = "上海越邦网络科技有限公司";
|
|
|
|
/// <summary>
|
|
/// 网站地址
|
|
/// </summary>
|
|
public const string WebSite = "http://www.Znyc.Cloudcar.Admin.com";
|
|
|
|
/// <summary>
|
|
/// 更新地址
|
|
/// </summary>
|
|
public const string UpdateUrl = "http://netcore.Znyc.Cloudcar.Admin.com/update";
|
|
}
|
|
}
|