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";
|
|
}
|
|
}
|
|
|