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.
17 lines
407 B
17 lines
407 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QMAPP.WinForm
|
|
{
|
|
public class UpdateSetting
|
|
{
|
|
public string 更新服务器地址 { get; set; } = "192.168.100.252";
|
|
|
|
public string 更新服务器端口 { get; set; } = "801";
|
|
|
|
public string 更新文件名 { get; set; } = "Update.xml";
|
|
}
|
|
}
|
|
|